7 lines
198 B
CoffeeScript
7 lines
198 B
CoffeeScript
|
EventEmitter = require('events').EventEmitter
|
||
|
|
||
|
BrowserWindow = process.atomBinding('window').BrowserWindow
|
||
|
BrowserWindow.prototype.__proto__ = EventEmitter.prototype
|
||
|
|
||
|
module.exports = BrowserWindow
|