Side navigation
#1068 closed bug (wontfix)
Opened March 25, 2007 07:41PM UTC
Closed March 31, 2008 01:35AM UTC
Interface's idrag.js
Reported by: | chinohillsbanditos | Owned by: | stefan |
---|---|---|---|
Priority: | major | Milestone: | 1.1.3 |
Component: | interface | Version: | 1.1.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In interface's idrag.js in line 134:
if (elm.dragCfg.oP != 'relative' && elm.dragCfg.oP != 'absolute') {
dEs.position = 'relative';
}
What about adding elm.dragCfg.oP != 'fixed' to the if statement. In non-IE browsers I actually set objects to fixed, and in IE I use absolute and javascript to simulate fixed.
Attachments (0)
Change History (2)
Changed April 26, 2007 07:45PM UTC by comment:1
Changed March 31, 2008 01:35AM UTC by comment:2
description: | In interface's idrag.js in line 134:\ if (elm.dragCfg.oP != 'relative' && elm.dragCfg.oP != 'absolute') {\ dEs.position = 'relative';\ }\ \ What about adding elm.dragCfg.oP != 'fixed' to the if statement. In non-IE browsers I actually set objects to fixed, and in IE I use absolute and javascript to simulate fixed. → In interface's idrag.js in line 134: \ if (elm.dragCfg.oP != 'relative' && elm.dragCfg.oP != 'absolute') { \ dEs.position = 'relative'; \ } \ \ What about adding elm.dragCfg.oP != 'fixed' to the if statement. In non-IE browsers I actually set objects to fixed, and in IE I use absolute and javascript to simulate fixed. |
---|---|
resolution: | → wontfix |
status: | new → closed |
Interface is no longer supported; consider switching to jQuery UI.
I'm having the same problem. I have a div that uses fixed positioning, so the positioning breaks after dragging it. I'm using a CSS hack[1] to mimic fixed positioning in IE.
[1] http://jessey.net/simon/articles/007.html