Skip to main content

Search and Top Navigation

#4192 closed bug (fixed)

Opened February 19, 2009 09:33PM UTC

Closed February 26, 2009 02:05AM UTC

Draggable Containment broken in Chrome

Reported by: sonofanickel Owned by:
Priority: blocker Milestone: 1.7
Component: ui.draggable Version: 1.6rc6
Keywords: Cc:
Blocked by: Blocking:
Description

Containment is broken in Chrome. The existing fix for FF3 and MSIE needs to be applied to Chrome as well.

From these lines in _getParentOffset

if((this.offsetParent[0] == document.body && $.browser.mozilla)	//Ugly FF3 fix
|| (this.offsetParent[0].tagName && this.offsetParent[0].tagName.toLowerCase() == 'html' && $.browser.msie)) //Ugly IE fix
   po = { top: 0, left: 0 };

Specifying

po = { top: 0, left: 0 };

for Chrome fixes the issue.

Attachments (0)
Change History (2)

Changed February 20, 2009 01:04PM UTC by rdworth comment:1

milestone: TBD1.6
priority: minorblocker

Changed February 26, 2009 02:05AM UTC by scottgonzalez comment:2

resolution: → fixed
status: newclosed

Fixed in r2073.