1
0
Fork 0

IE doesn't like using reserved words as properties

- This is one thing I'll have to complement IE on. Every browser should blow up on reserved words.
closure/master
Mike Gerwitz 2010-12-20 08:42:05 -05:00
parent 72f4dd0757
commit 5e999b8167
1 changed files with 1 additions and 1 deletions

View File

@ -80,6 +80,6 @@ var easejs = {};
/**{CONTENT}**/
// the following should match the exports of /index.js
ns_exports.Class = exports.class;
ns_exports.Class = exports['class'];
} )( easejs );