Files
atom/HTML/lib/bootstrap.coffee
2011-08-26 17:05:05 -07:00

16 lines
396 B
CoffeeScript

# This file is the first thing loaded on startup.
modules = {}
this.require = (path) ->
console.log(path)
return modules[path] if modules[path]
root = OSX.NSBundle.mainBundle.resourcePath + '/HTML/'
file = OSX.NSString.stringWithContentsOfFile "#{root}/#{path}.js"
exports = {}
eval "(function(exports){#{file}}).call(exports, exports);"
modules[path] = exports
modules[path]