Browse Source

Fixes #180

pull/291/merge
Ramiro Saenz 9 years ago
parent
commit
63a84fa977
  1. 6
      electron/main.js

6
electron/main.js

@ -155,7 +155,11 @@ function createWindow () {
if ( cmd === 'browser-backward' ) mainWindow.webContents.executeJavaScript('Ext.cq1("app-main").getActiveTab().goBack();');
// Navigate the window forward when the user hits their mouse forward button
if ( cmd === 'browser-forward' ) mainWindow.webContents.executeJavaScript('Ext.cq1("app-main").getActiveTab().goForward();');
})
});
mainWindow.on('focus', (e) => {
// Make focus on current service when user use Alt + Tab to activate Rambox
});
// Emitted when the window is closed.
mainWindow.on('close', function(e) {

Loading…
Cancel
Save