You need the ES6 and ES5 shims for IE 11 (not sure if they work in older browsers, but they would be a minimum).
I have this in my index.html's head element: <script src="node_modules/es5-shim/es5-shim.js"></script> <script src="node_modules/es6-shim/es6-shim.js"></script> You will need to install the es5-shim and es6-shim into your node_modules: path to project > npm install es5-shim --save path to project > npm install es6-shim --save Or whatever manner you want to manage your JS packages. Steve On Thursday, July 7, 2016 at 12:36:21 PM UTC-4, Black Jack wrote: > > Hi group, > > I am also experiencing the same issue. On the apache webserver, chrome and > firefox works, but not for ie10. In localhost: chrome, firefox, and ie10 is > working. I am using rc2 with similar setup as Jaroslav. > -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
