Opened 15 years ago
Closed 15 years ago
#2925 closed bug (fixed)
position: function(pos) does not work under IE6
Reported by: | Owned by: | Scott González | |
---|---|---|---|
Priority: | critical | Milestone: | 1.5 |
Component: | ui.dialog | Version: | |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
the following does not work in IE6
minTop = top = doc.scrollTop()
as i.e. interprets top to be window.top which is readonly.
Therefore I've changed it to read
top = doc.scrollTop(), minTop = top
full line below
var wnd = $(window), doc = $(document), top = doc.scrollTop(), minTop = top , left = doc.scrollLeft();
Note: See
TracTickets for help on using
tickets.