This commit is contained in:
Chris Wanstrath
2011-11-10 09:33:47 -08:00
parent c11227da25
commit 1b049db51c

View File

@@ -12,20 +12,19 @@ Native = require 'native'
Settings = require 'settings'
Storage = require 'storage'
atom.native = new Native
atom.storage = new Storage
atom.event = new Event
# atom.on, atom.off, etc.
for name, method of atom.event
atom[name] = atom.event[name]
atom.native = new Native
atom.storage = new Storage
atom.keybinder = new KeyBinder
atom.settings = new Settings
atom.extensions = {}
atom.extensionManager = new ExtensionManager
atom.app = new App
atom.app = new App
# atom.open, atom.close, etc.
for name, method of atom.app
atom[name] = atom.app[name]