fix for #4399, removing unused variables
This commit is contained in:
parent
30e760b63f
commit
a974b255c3
|
@ -1,9 +1,7 @@
|
||||||
// Create innerHeight, innerWidth, outerHeight and outerWidth methods
|
// Create innerHeight, innerWidth, outerHeight and outerWidth methods
|
||||||
jQuery.each([ "Height", "Width" ], function(i, name){
|
jQuery.each([ "Height", "Width" ], function(i, name){
|
||||||
|
|
||||||
var tl = i ? "Left" : "Top", // top or left
|
var type = name.toLowerCase();
|
||||||
br = i ? "Right" : "Bottom", // bottom or right
|
|
||||||
type = name.toLowerCase();
|
|
||||||
|
|
||||||
// innerHeight and innerWidth
|
// innerHeight and innerWidth
|
||||||
jQuery.fn["inner" + name] = function(){
|
jQuery.fn["inner" + name] = function(){
|
||||||
|
|
Loading…
Reference in a new issue