From 4523743150fcfdc4af8a2eb06afb76a859ec41d5 Mon Sep 17 00:00:00 2001 From: asmsuechan Date: Sat, 21 Jan 2017 16:06:14 +0900 Subject: [PATCH] Fix by review refs: https://github.com/BoostIO/Boostnote/pull/235#pullrequestreview-17800321 --- lib/main-menu.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/main-menu.js b/lib/main-menu.js index 051b6113..31000948 100644 --- a/lib/main-menu.js +++ b/lib/main-menu.js @@ -150,14 +150,14 @@ var view = { { label: 'Next Note', accelerator: 'Control + J', - click: function () { + click () { mainWindow.webContents.send('list:next') } }, { label: 'Previous Note', accelerator: 'Control + U', - click: function () { + click () { mainWindow.webContents.send('list:prior') } }, @@ -167,7 +167,7 @@ var view = { { label: 'Focus Search', accelerator: 'Control + S', - click: function () { + click () { mainWindow.webContents.send('top:focus-search') } }