Skip to content

Commit

Permalink
fix for #4399, removing unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonaaron committed Mar 22, 2009
1 parent 30e760b commit a974b25
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/dimensions.js
Original file line number Diff line number Diff line change
@@ -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(){
Expand Down

0 comments on commit a974b25

Please sign in to comment.