client/index.js attemps to stub out Electron methods that could be inappropriately called from the browser by assigning _.noop to them. Unfortunately, Meteor apparently uses an old version of underscore that does not support that function, so Electron.isFullScreen & similar are undefined, and if you try to call them in the browser, you will get Uncaught TypeError: Electron.isFullScreen is not a function(…).
client/index.js attemps to stub out Electron methods that could be inappropriately called from the browser by assigning
_.noop
to them. Unfortunately, Meteor apparently uses an old version of underscore that does not support that function, soElectron.isFullScreen
& similar are undefined, and if you try to call them in the browser, you will getUncaught TypeError: Electron.isFullScreen is not a function(…)
.