From a974b255c30ac23906ba45bf95de99542a70b587 Mon Sep 17 00:00:00 2001 From: Brandon Aaron Date: Sun, 22 Mar 2009 04:24:40 +0000 Subject: [PATCH] fix for #4399, removing unused variables --- src/dimensions.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/dimensions.js b/src/dimensions.js index f438db0..7371f00 100644 --- a/src/dimensions.js +++ b/src/dimensions.js @@ -1,9 +1,7 @@ // Create innerHeight, innerWidth, outerHeight and outerWidth methods jQuery.each([ "Height", "Width" ], function(i, name){ - var tl = i ? "Left" : "Top", // top or left - br = i ? "Right" : "Bottom", // bottom or right - type = name.toLowerCase(); + var type = name.toLowerCase(); // innerHeight and innerWidth jQuery.fn["inner" + name] = function(){ -- 1.7.10.4