Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/scottjehl/jquery into sco…
Browse files Browse the repository at this point in the history
…ttjehl-master
  • Loading branch information
jeresig committed Jan 20, 2011
2 parents 35875ac + 2b64b1d commit c97b6ee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/dimensions.js
Expand Up @@ -35,8 +35,10 @@ jQuery.each([ "Height", "Width" ], function( i, name ) {


if ( jQuery.isWindow( elem ) ) { if ( jQuery.isWindow( elem ) ) {
// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode // Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
return elem.document.compatMode === "CSS1Compat" && elem.document.documentElement[ "client" + name ] || // 3rd condition allows Nokia support, as it supports the docElem prop but not CSS1Compat
elem.document.body[ "client" + name ]; var docElemProp = elem.document.documentElement[ "client" + name ];
return elem.document.compatMode === "CSS1Compat" && docElemProp ||
elem.document.body[ "client" + name ] || docElemProp;


// Get document width or height // Get document width or height
} else if ( elem.nodeType === 9 ) { } else if ( elem.nodeType === 9 ) {
Expand Down

0 comments on commit c97b6ee

Please sign in to comment.