[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Neil
Great. Works a treat. Many thanks.

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Brandon Aaron
Release early, release often. So I had a regression in 1.1.1 with Safari and window width and height calculation. I just released 1.1.2 which fixes that and a bug with getting the offset of table cells with borders in mozilla. -- Brandon Aaron On 8/17/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Brandon Aaron
The new Dimensions 1.1.1 release is up on the project page. http://jquery.com/plugins/project/dimensions/ -- Brandon Aaron On 8/17/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > I've fixed the issue and I'm posting a new release right now. > > -- > Brandon Aaron > > On 8/15/07, Brandon Aaron <

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-17 Thread Brandon Aaron
I've fixed the issue and I'm posting a new release right now. -- Brandon Aaron On 8/15/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: > > Ahh thanks Wizzud, I'll dig a little deeper. Thanks. > > -- > Brandon Aaron > > On 8/15/07, Wizzud <[EMAIL PROTECTED] > wrote: > > > > > > > > Brandon, > > There

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Brandon Aaron
Ahh thanks Wizzud, I'll dig a little deeper. Thanks. -- Brandon Aaron On 8/15/07, Wizzud <[EMAIL PROTECTED]> wrote: > > > > Brandon, > There is actually a slight problem in this particular scenario, because > $(document).height() is returning 0. > Ext's jquery adaptor IS maxing out window and doc

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Wizzud
Brandon, There is actually a slight problem in this particular scenario, because $(document).height() is returning 0. Ext's jquery adaptor IS maxing out window and document, but because document is returning 0, window height is being used as the greater. The only property I can find (using FireBu

[jQuery] Re: Modals don't mask whole page with Ext and jQuery

2007-08-15 Thread Brandon Aaron
I responded to the thread over on the ext forums. Here is what I said: The jQuery Dimensions plugin simply returns the document height or the window height. Returning the Math.max( $(document).height(), $(window).height() ); for $(document).height() would not return the actual document height. --