All files export their public interface if exports is available.

This commit is contained in:
Chad Weider 2012-01-15 17:23:48 -08:00
parent 003c2a59aa
commit 2b5d7a0048
35 changed files with 165 additions and 4 deletions

View file

@ -21,7 +21,7 @@
*/
undoModule = (function()
var undoModule = (function()
{
var stack = (function()
{
@ -329,3 +329,7 @@ undoModule = (function()
apool: null
}; // apool is filled in by caller
})();
if (typeof exports !== 'undefined') {
exports.undoModule = undoModule;
}