You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
glowing-bear/electron-globals.js

12 lines
304 B

var ipc = require('electron').ipcRenderer;
var setElectronBadge = function(value) {
if (ipc && typeof ipc.send === 'function') {
ipc.send('badge', value);
}
};
global.setElectronBadge = setElectronBadge;
// Let Glowing Bear know it's running as an electron app
window.is_electron = 1;