Skip to main content

Search and Top Navigation

#2925 closed bug (fixed)

Opened May 29, 2008 07:16PM UTC

Closed May 29, 2008 09:37PM UTC

position: function(pos) does not work under IE6

Reported by: jamesbaile@emsolv.co.uk Owned by: scottgonzalez
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();

Attachments (0)
Change History (1)

Changed May 29, 2008 09:37PM UTC by scottgonzalez comment:1

resolution: → fixed
status: newclosed