Move window/document test to dimensions for consistency
This commit is contained in:
parent
edb2286544
commit
bdce86dc2e
2 changed files with 6 additions and 11 deletions
|
@ -170,11 +170,6 @@ jQuery.each(["height", "width"], function( i, name ) {
|
||||||
get: function( elem, computed, extra ) {
|
get: function( elem, computed, extra ) {
|
||||||
var val;
|
var val;
|
||||||
|
|
||||||
// Tests for window/document
|
|
||||||
if ( !elem.style ) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( computed ) {
|
if ( computed ) {
|
||||||
if ( elem.offsetWidth !== 0 ) {
|
if ( elem.offsetWidth !== 0 ) {
|
||||||
val = getWH( elem, name, extra );
|
val = getWH( elem, name, extra );
|
||||||
|
|
|
@ -7,17 +7,17 @@ jQuery.each([ "Height", "Width" ], function( i, name ) {
|
||||||
|
|
||||||
// innerHeight and innerWidth
|
// innerHeight and innerWidth
|
||||||
jQuery.fn["inner" + name] = function() {
|
jQuery.fn["inner" + name] = function() {
|
||||||
var ret;
|
var elem = this[0];
|
||||||
return this[0] && !isNaN( ret = parseFloat(jQuery.css( this[0], type, "padding" )) ) ?
|
return elem && elem.style ?
|
||||||
ret :
|
parseFloat( jQuery.css( elem, type, "padding" ) ) :
|
||||||
null;
|
null;
|
||||||
};
|
};
|
||||||
|
|
||||||
// outerHeight and outerWidth
|
// outerHeight and outerWidth
|
||||||
jQuery.fn["outer" + name] = function( margin ) {
|
jQuery.fn["outer" + name] = function( margin ) {
|
||||||
var ret;
|
var elem = this[0];
|
||||||
return this[0] && !isNaN( ret = parseFloat(jQuery.css( this[0], type, margin ? "margin" : "border" )) ) ?
|
return elem && elem.style ?
|
||||||
ret :
|
parseFloat( jQuery.css( elem, type, margin ? "margin" : "border" ) ) :
|
||||||
null;
|
null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue