Make "screen" module a browser module
This commit is contained in:
parent
551c39e241
commit
809c995c0b
5 changed files with 15 additions and 18 deletions
|
@ -1,15 +0,0 @@
|
|||
binding = process.atomBinding 'screen'
|
||||
|
||||
checkAppIsReady = ->
|
||||
unless process.type is 'renderer' or require('app').isReady()
|
||||
throw new Error('Can not use screen module before the "ready" event of app module gets emitted')
|
||||
|
||||
if process.platform in ['linux', 'win32'] and process.type is 'renderer'
|
||||
# On Linux and Windows we could not access screen in renderer process.
|
||||
module.exports = require('remote').require 'screen'
|
||||
else
|
||||
for name, _ of binding
|
||||
do (name) ->
|
||||
module.exports[name] = (args...) ->
|
||||
checkAppIsReady()
|
||||
binding[name](args...)
|
Loading…
Add table
Add a link
Reference in a new issue