Skip to content
Commit a4d49e9d authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

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.
parent dc037415
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment