electron/atom/common/api/lib/clipboard.coffee

7 lines
251 B
CoffeeScript
Raw Normal View History

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