git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
30e760b
)
fix for #4399, removing unused variables
author
Brandon Aaron
<brandon.aaron@gmail.com>
Sun, 22 Mar 2009 04:24:40 +0000
(
04:24
+0000)
committer
Brandon Aaron
<brandon.aaron@gmail.com>
Sun, 22 Mar 2009 04:24:40 +0000
(
04:24
+0000)
src/dimensions.js
patch
|
blob
|
history
diff --git
a/src/dimensions.js
b/src/dimensions.js
index
f438db0
..
7371f00
100644
(file)
--- 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(){