forgot to build 11544f2717

This commit is contained in:
Michael Ficarra
2011-11-10 01:09:21 -05:00
parent 7aaaac42bc
commit fbe84e376c

View File

@@ -5,8 +5,10 @@
CoffeeScript.require = require;
if (typeof global === "undefined" || global === null) global = this;
CoffeeScript.eval = function(code, options) {
return eval(CoffeeScript.compile(code, options));
return global.eval(CoffeeScript.compile(code, options));
};
CoffeeScript.run = function(code, options) {