tiptoeing along, keeping the suite passing

This commit is contained in:
Zeke Sikelianos 2016-03-25 12:41:24 -07:00 committed by Kevin Sawicki
parent ee181294b3
commit ca7b492b97
3 changed files with 90 additions and 85 deletions

View file

@ -1,6 +1,6 @@
if (process.platform === 'linux' && process.type === 'renderer') {
// On Linux we could not access clipboard in renderer process.
module.exports = require('electron').remote.clipboard;
module.exports = require('electron').remote.clipboard
} else {
module.exports = process.atomBinding('clipboard');
module.exports = process.atomBinding('clipboard')
}