electron/atom/browser/api/lib/tray.coffee
2014-05-30 23:57:54 +08:00

10 lines
278 B
CoffeeScript

EventEmitter = require('events').EventEmitter
bindings = process.atomBinding 'tray'
Tray = bindings.Tray
Tray::__proto__ = EventEmitter.prototype
Tray::setContextMenu = (menu) ->
@_setContextMenu menu
@menu = menu # Keep a strong reference of menu.
module.exports = Tray