-
Notifications
You must be signed in to change notification settings - Fork 433
JavaScript Error when using IE: Unable to get property 'apply' #150
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
Comments
What version of IE? Can you wipe out the project and get latest? Inside Uncomment these ones: /***************************************************************************************************
* BROWSER POLYFILLS
*/
/** IE9, IE10 and IE11 requires all of the following polyfills. **/
import 'core-js/es6/symbol';
import 'core-js/es6/object';
import 'core-js/es6/function';
import 'core-js/es6/parse-int';
import 'core-js/es6/parse-float';
import 'core-js/es6/number';
import 'core-js/es6/math';
import 'core-js/es6/string';
import 'core-js/es6/date';
import 'core-js/es6/array';
import 'core-js/es6/regexp';
import 'core-js/es6/map';
import 'core-js/es6/set'; Hope that helps! |
Thanks, I'll pull down the latest, take a look and report back. |
It's gone now actually. I'll probably bring something similar back but it won't be so manual of a process. Can you wipe out both the dist folders and do the below, just to see if anything is acting up?
|
I think the issue is that node-sass and sass-loader are missing from package.json. I just installed them and then it worked. Just to confirm the fix for this issue. Removing the comments for the IE9-11 imports does work. Next time slow down with the fixes. :) |
NgConf tomorrow 🙈🎁 had to get it ready and you're right I had those installed but not saved. |
I believe I dropped the PR with the dependencies. First time doing that though so apologies if I messed it up. |
Don't see it @rphilp |
When trying to run the default application, I get the error seen above. Using Chrome, this error doesn't show. From the research I've done, it appears that .apply() is not available in IE and needs some sort of shim to work properly. I've tried some of the suggestions, but haven't been able to get it to work.
The text was updated successfully, but these errors were encountered: