Skip to content

Commit

Permalink
Fixed Settings key shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
klaudiosinani committed Aug 31, 2017
1 parent b59b3fd commit 6f2d3c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const electron = require('electron');
const config = require('./config');

const ipc = electron.ipcRenderer;
const shell = electron.shell;

ipc.on('new-note', () => {
// Create new note
Expand Down Expand Up @@ -107,7 +108,7 @@ ipc.on('return', () => {

ipc.on('settings', () => {
// Toggle Settings
document.querySelector('#gwt-debug-AccountMenu-settings').click();
shell.openExternal('https://www.evernote.com/Settings.action');
});

ipc.on('bold', () => {
Expand Down

0 comments on commit 6f2d3c5

Please sign in to comment.