From d9c71705c2d61d6a8a9159d411dacac660344249 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Tue, 19 Jan 2016 07:12:39 -0500 Subject: [PATCH] Removed some debug messages. --- station.js | 1 - system.js | 1 - 2 files changed, 2 deletions(-) diff --git a/station.js b/station.js index f2c303d..17f72a7 100644 --- a/station.js +++ b/station.js @@ -1,7 +1,6 @@ /* Document onload. */ function loaded() { var div = document.getElementById('stations'); - console.log([div.offsetHeight, window.innerHeight].join(' vs ')); if (div && div.offsetHeight > window.innerHeight * 0.9) div.style.height = '80%'; } diff --git a/system.js b/system.js index 4207b78..6a91736 100644 --- a/system.js +++ b/system.js @@ -1,7 +1,6 @@ /* Document onload. */ function loaded() { var div = document.getElementById('systems'); - console.log([div.offsetHeight, window.innerHeight].join(' vs ')); if (div && div.offsetHeight > window.innerHeight * 0.9) div.style.height = '80%'; } -- 2.7.4