From e8d75f9ff51c870ea205dca76c0756f28ac42b88 Mon Sep 17 00:00:00 2001 From: Shane Tomlinson <stomlinson@mozilla.com> Date: Tue, 17 Jul 2012 17:25:46 +0100 Subject: [PATCH] Declare the "favIconHeight". Fix other JSHint errors. --- resources/static/dialog/js/misc/screen_size_hacks.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/resources/static/dialog/js/misc/screen_size_hacks.js b/resources/static/dialog/js/misc/screen_size_hacks.js index 8cc8871bb..ce048dd5f 100644 --- a/resources/static/dialog/js/misc/screen_size_hacks.js +++ b/resources/static/dialog/js/misc/screen_size_hacks.js @@ -1,4 +1,6 @@ (function() { + "use strict"; + /** * This is a hack to feign fixed headers/footers and dynamic body content * size. On mobile, it helps keep the footer at the very bottom of the @@ -113,7 +115,7 @@ // the position specified in CSS. $("section,#signIn").css("position", ""); - favIconHeight = $("#favicon").outerHeight(); + var favIconHeight = $("#favicon").outerHeight(); // Force the top of the main content area to be below the favicon area. signInEl.css("top", favIconHeight + "px"); -- GitLab