v1.1
This commit is contained in:
4
jquery/common.js
vendored
4
jquery/common.js
vendored
@@ -88,7 +88,7 @@ $.prototype.getEmptyHeight = function()
|
||||
//debug('#'+$(this).attr('id')+'|.'+$(this).attr('class')+' gives '+$(this).outerHeight(true));
|
||||
iTotalHeight += $(this).outerHeight(true);
|
||||
});
|
||||
return $This.height() - iTotalHeight;
|
||||
return $This.innerHeight() - iTotalHeight;
|
||||
};
|
||||
|
||||
$.prototype.getEmptyWidth = function()
|
||||
@@ -98,7 +98,7 @@ $.prototype.getEmptyWidth = function()
|
||||
{
|
||||
iTotalWidth += $(this).outerWidth(true);
|
||||
});
|
||||
return $This.width() - iTotalWidth;
|
||||
return $This.innerWidth() - iTotalWidth;
|
||||
};
|
||||
|
||||
$.prototype.addDefaultValue = function(sDefaultValue, sInitValue)
|
||||
|
||||
Reference in New Issue
Block a user