new $(window).height() functionality

new $(window).height() functionality


I saw that 1.2 added $(window).height() functionality to jquery.js
which was great. Unfortunately (for me), it doesn't appear to do
exactly the same thing as jquery.dimensions.js and I was wondering if
that is as intended.
In FF, it looks like it returns
document.body['clientHeight']
yet I expected it to return
self.innerHeight
Perhaps the line
jQuery.browser.safari && self["inner" + name] ||
is incorrect and it should include other browsers in addition to
safari? I'm fairly new to jQuery so I could definitely be missing
something. :)
David