mirror of
https://github.com/atom/atom.git
synced 2026-02-08 13:45:09 -05:00
16 lines
251 B
CoffeeScript
16 lines
251 B
CoffeeScript
KeyBinder = require 'key-binder'
|
|
fs = require 'fs'
|
|
require 'window'
|
|
|
|
module.exports =
|
|
class App
|
|
@startup: ->
|
|
KeyBinder.register "app", @
|
|
window.startup()
|
|
|
|
@open: (path) ->
|
|
OSX.NSApp.open path
|
|
|
|
@quit: ->
|
|
OSX.NSApp.terminate null
|