1
0
Fork 0

Fixed abstract/final class export in combined file

- I somehow had them swapped
closure/master
Mike Gerwitz 2011-06-02 09:07:48 -04:00
parent 9492a181f3
commit d1044383d5
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ var easejs = {};
// the following should match the exports of /index.js // the following should match the exports of /index.js
ns_exports.Class = module['class'].exports; ns_exports.Class = module['class'].exports;
ns_exports.AbstractClass = module['class_final'].exports; ns_exports.AbstractClass = module['class_abstract'].exports;
ns_exports.FinalClass = module['class_abstract'].exports; ns_exports.FinalClass = module['class_final'].exports;
ns_exports.Interface = module['interface'].exports; ns_exports.Interface = module['interface'].exports;
} )( easejs ); } )( easejs );