Side navigation
#2310 closed bug (fixed)
Opened February 08, 2008 09:17PM UTC
Closed February 12, 2008 03:10PM UTC
sortable forces dragged elements to visible
Reported by: | jr | Owned by: | paul |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.3 |
Component: | ui | Version: | 1.2.2 |
Keywords: | sortable visible | Cc: | |
Blocked by: | Blocking: |
Description
When an element has finished being dragged by sortable, the visibility is switched to 'visible', overriding any visibility of its parents. This means, for example, that the element will still be visible if its parent is being dragged by an enclosing sortable.
Ideally it should be returned to what it was, but at least it should be reset to inherited.
Fix: In ui.sortable.js, the line
$(this.currentItem).css('visibility', 'visible');
should be
$(this.currentItem).css('visibility', '');
(The value
'inherit'may be needed, but
''worked in all browsers I've tried as inherit is the initial value)
Attachments (0)
Change History (1)
Changed February 12, 2008 03:10PM UTC by comment:1
resolution: | → fixed |
---|---|
status: | new → closed |