Skip to content
Permalink
Browse files
core: height() method wasn't working reliably in Opera - rather than …
…returning the actual client height when called on window, it returned the document's height through document.body.clientHeight. The right value to work with is html.clientHeight
  • Loading branch information
Paul Bakaus committed Nov 7, 2008
1 parent 325755d commit b64d609
Showing 1 changed file with 1 addition and 1 deletion.
@@ -1347,7 +1347,7 @@ jQuery.each([ "Height", "Width" ], function(i, name){
// Get window width or height
return this[0] == window ?
// Opera reports document.body.client[Width/Height] properly in both quirks and standards
jQuery.browser.opera && document.body[ "client" + name ] ||
jQuery.browser.opera && document.body.parentNode[ "client" + name ] ||

// Safari reports inner[Width/Height] just fine (Mozilla and Opera include scroll bar widths)
jQuery.browser.safari && window[ "inner" + name ] ||

0 comments on commit b64d609

Please sign in to comment.