electron/atom/common/api/lib/clipboard.coffee
2015-11-13 09:38:22 +08:00

6 lines
263 B
CoffeeScript

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