Fix crash in IE8 when loading a class into view.
Caused by the fact that IE8 doesn't allow the reserved keyword 'enum' to be used inside a member expression, like so: someObj.enum So I had to rewrite it like so: someObj["enum"] IE9 and other browsers didn't have a problem with that.
Loading
Please register or sign in to comment