From 7030576f80e08fd8680d67b1108491afa37c415e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 6 May 2016 13:36:10 -0400 Subject: [PATCH] Make the default window size a little bigger --- static/js/background.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/static/js/background.js b/static/js/background.js index 09e81e7..02c2dd6 100644 --- a/static/js/background.js +++ b/static/js/background.js @@ -1,9 +1,8 @@ -// just start the app in fullscreen chrome.app.runtime.onLaunched.addListener(function() { chrome.app.window.create('index.html', { state: "normal", bounds: { - width: 770, height: 440 + width: 850, height: 500 } }); }); \ No newline at end of file