electron/atom/common/api/lib/clipboard.coffee
2014-05-21 22:44:43 +08:00

6 lines
244 B
CoffeeScript

module.exports =
if process.platform is 'linux' and process.type is 'renderer'
# On Linux we could not access clipboard in renderer process.
require('remote').process.atomBinding 'clipboard'
else
process.atomBinding 'clipboard'