removed "globals" option of CoffeeScript.compile and enhanced fix from

previous commits
This commit is contained in:
Michael Ficarra
2011-04-29 15:53:30 -04:00
parent 63ce244359
commit 7efea4bb23
7 changed files with 8 additions and 12 deletions

View File

@@ -79,7 +79,7 @@
global: {}
};
for (g in global) {
sandbox[g] = global[g];
sandbox.global[g] = global[g];
}
sandbox.global.global = sandbox.global;
sandbox.global.root = sandbox.global;