Reputation: 49
I have started my ember application in local and if it launched in chrome it works fine but when i give the URL in IE 11 a blank page is loading ...pls let me know how to fix it
Upvotes: 1
Views: 486
Reputation: 12872
multiple definitions of a property not allowed in strict mode
To resolve this error, you need to remove duplicated function/property name which is mentioned in console. At any point of time you should have only one function/property with the same name. for examle say,
export default Component.extend({
foo: function(){
//foo function
},
foo: function(){
//this will produce error in IE strict mode and it will not execute JS
}
});
Upvotes: 1