From cc3b2a3f36702dd0b61a9a09cfc4768579f9d92e Mon Sep 17 00:00:00 2001 From: cTn Date: Mon, 3 Feb 2014 06:18:44 +0100 Subject: [PATCH] removing dynamic height scaling --- main.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/main.js b/main.js index 71df61eef2..9e74149617 100644 --- a/main.js +++ b/main.js @@ -15,14 +15,6 @@ ga_tracker.sendAppView('Application Started'); // Google Analytics stuff end $(document).ready(function() { - // set bounds (default 960x600) - if (screen.height > 600) { - chrome.app.window.current().setBounds({width: 962, height: 629}); - } else { - $('div#content').height(280); - chrome.app.window.current().setBounds({width: 962, height: 429}); - } - // bind controls $('#frame .minimize').click(function() { chrome.app.window.current().minimize();