-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to make this library work in Internet Explorer? #24
Comments
Hey there, I just made this library work in IE and deployed it to my users. In case anyone else needs IE version, then here is the library in gist form: Just drop it in place of the original version and it will work in IE. Here's the summary of the changes that I made to the library to make it work in IE again:
|
Hey @pkrumins, It seems like my transpile target to support everything above Edge 15 was probably a bit too optimistic, since the library got a bit more popular than expected. Looks like you already found a workable solution though! :) Btw. I am curious to check out what you have build. If you got any public address, feel free to share :) |
I'd love the transpiled ES5 version. When you release it, I'll drop it in place of my quick modifications. The website that I built is https://onlineMATHtools.com. There are over 40 fractals in there. |
@pkrumins nice collection! |
Thanks! Which |
Yep, both |
Thanks! I just tried and unfortunately it doesn't work because of
Can you add a polyfill and release one more time? I'll then try again. |
@pkrumins ah, missed that one. For the curious: I tried to auto-polyfill missing IE11 stuff via babel and core-js by using its feature detection, but the resulting build turned out to be immensely overblown compared to the libraries size itself. (about 5x vs. the non-auto-polyfilled size). Thats because core-js adds a bunch of helper functions and glue code to integrate and process its polyfills. Thats useful if you polyfill a bit more and its also not that grave for bigger bundles than this lib, where 60KB more wouldnt be that bad. But for this project it wasn't really a viable solution for me. Long story short, I decided to manually drop in the polyfill for |
Thanks for the new release and your background comments. Unfortunately, there's a new error:
Can you please look into this? I'll be happy to try it again. |
@pkrumins hey there, I pushed a new release that should fix this issue. Please let me know if there is anything else coming up. |
@pkrumins Just wanted to check back if the release worked for you in the end, or if there still are language features missing. Unfortunately I currently do not have a good testing environment myself to properly test IE11. |
Thanks for checking back. I just tested the library in I'll put it in math tools website now. Also, here's how you can test things in IE. Try this link: browserling.com/ie/11 - this opens a live IE 11 session. |
@pkrumins perfect, thanks! :) |
Thanks for making this great library!
I created a website about fractals and used your library to generate L-System rules for various fractal types. Lately the website has gotten very popular and there are thousands of Internet Explorer uses who use it. Unfortunately as your library uses the latest JavaScript tricks, it doesn't work in Internet Explorer.
Is there any way to make use this library in Internet Explorer?
The text was updated successfully, but these errors were encountered: