electron/lib/browser/api/tray.js
2016-05-15 09:41:30 -04:00

13 lines
310 B
JavaScript

const {EventEmitter} = require('events')
const {Tray} = process.atomBinding('tray')
Object.setPrototypeOf(Tray.prototype, EventEmitter.prototype)
Tray.prototype.setContextMenu = function (menu) {
this._setContextMenu(menu)
// Keep a strong reference of menu.
this.menu = menu
}
module.exports = Tray