Add missing parens to call to app.quit()

This commit is contained in:
Kevin Sawicki 2013-08-28 08:09:52 -07:00
parent bd96814576
commit b02ac8696e

View File

@ -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() }
]
]