From b02ac8696e221766dfbbd2b04dd6041ad277f6b5 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 28 Aug 2013 08:09:52 -0700 Subject: [PATCH] Add missing parens to call to app.quit() --- src/application-menu.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/application-menu.coffee b/src/application-menu.coffee index d5ad1dbe8..404229498 100644 --- a/src/application-menu.coffee +++ b/src/application-menu.coffee @@ -73,7 +73,7 @@ class ApplicationMenu { label: 'Reload', accelerator: 'Command+R', click: -> @focusedWindow()?.reload() } { label: 'Close Window', accelerator: 'Command+Shift+W', click: -> @focusedWindow()?.close() } { label: 'Toggle Dev Tools', accelerator: 'Command+Alt+I', click: -> @focusedWindow()?.toggleDevTools() } - { label: 'Quit', accelerator: 'Command+Q', click: -> app.quit } + { label: 'Quit', accelerator: 'Command+Q', click: -> app.quit() } ] ]