Compiled Javascript from CoffeeScript not working in IE8 -
I use CodeKit to compile JSK to my coffee script files.
Most recently, I came to know that none of my compiled JS files from CoffeeScript in CodeKit is working more in IE8.
I have tried to dig through IE Developer Tools and found that the error was being given in the following lines.
this ["default"] = function () {return alert explorer.prototype.default.ed (_this, logic); }; ... ... this ["export"] = function () {ExportAuth.prototype.export.apply (_this, logic); }; I have looked at other function declarations and do all this
this.functionName = function () {}; So it seems that the IE8 class does not like the job announcements with brackets []? Does it also make sense?
For now, I just comment on the lines above and it worked fine. Is there anything with the latest update in the coffee script?
I think the actual function declaration does not come from the problem, but
< Code> Return to ExportAuth.prototype.export.apply (_this, argument);
Comments
Post a Comment