From b465034d6db052c6215f7db47439bc743958d45f Mon Sep 17 00:00:00 2001 From: "R. Aidan Campbell" Date: Fri, 6 May 2016 11:11:46 -0400 Subject: [PATCH] changed default window size to include everything we need. This closes #55 --- static/js/background.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/background.js b/static/js/background.js index 6ffa8b6..09e81e7 100644 --- a/static/js/background.js +++ b/static/js/background.js @@ -2,5 +2,8 @@ chrome.app.runtime.onLaunched.addListener(function() { chrome.app.window.create('index.html', { state: "normal", + bounds: { + width: 770, height: 440 + } }); }); \ No newline at end of file