Skip to content

Commit

Permalink
set name to lowercase, since it's passed as initial caps
Browse files Browse the repository at this point in the history
  • Loading branch information
scottjehl committed Jan 13, 2011
1 parent 610ab13 commit 73d060b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dimensions.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jQuery.each([ "Height", "Width" ], function( i, name ) {
if ( jQuery.isWindow( elem ) ) {
// Everyone else use document.documentElement or document.body depending on Quirks vs Standards mode
return elem.document.compatMode === "CSS1Compat" && elem.document.documentElement[ "client" + name ] ||
elem.document.body[ "client" + name ] || window.screen && window.screen[ name ];
elem.document.body[ "client" + name ] || window.screen && window.screen[ name.toLowerCase() ];

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

0 comments on commit 73d060b

Please sign in to comment.