diff options
-rw-r--r-- | src/dimensions.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/dimensions.js b/src/dimensions.js index f438db0cf..7371f00fa 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(){ |