Hi,

I think I may have come across the problem, I found the code:

                var nonContentHeight = this.uiDialog.css({
                                height: 'auto',
                                width: options.width
                        })
                        .height();

                this.element
                        .css
({
                                minHeight: Math.max(options.minHeight - 
nonContentHeight, 0),
                                height: options.height == 'auto'
                                        ? 'auto'
                    : options.height - nonContentHeight
                        });

In internet explorer, i alerted the nonContentHeight variable and it
was 177, in firefox it was 39. When I changed the bottom line whcih
says options.height - nonContentHeight to just options.height, the
problem went away, but there seems to be a problem with the
nonContentHeight var.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to