From fb52faa84096a5d5d970bd085b6061fcc27cbafa Mon Sep 17 00:00:00 2001 From: Magnus Hauge Bakke Date: Wed, 30 Mar 2016 19:38:46 +0200 Subject: [PATCH] Fix missing semicolon --- electron-main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron-main.js b/electron-main.js index 7ff2ff9..0eab40e 100644 --- a/electron-main.js +++ b/electron-main.js @@ -107,7 +107,7 @@ submenu: [ { label: 'Learn More', - click: function() { require('electron').shell.openExternal('https://github.com/glowing-bear/glowing-bear') } + click: function() { require('electron').shell.openExternal('https://github.com/glowing-bear/glowing-bear'); } }, ] },