13 lines
327 B
CoffeeScript
13 lines
327 B
CoffeeScript
{EventEmitter} = require 'events'
|
|
{Tray} = process.atomBinding 'tray'
|
|
|
|
Tray::__proto__ = EventEmitter.prototype
|
|
|
|
Tray::setContextMenu = (menu) ->
|
|
@_setContextMenu menu
|
|
@menu = menu # Keep a strong reference of menu.
|
|
|
|
# Keep compatibility with old APIs.
|
|
Tray::popContextMenu = Tray::popUpContextMenu
|
|
|
|
module.exports = Tray
|