Search and Top Navigation
#4361 closed bug (wontfix)
Opened March 18, 2009 06:41PM UTC
Closed October 29, 2012 03:12PM UTC
IE7 stops anti-aliasing when sorting stops if revert=false and opacity is used
| Reported by: | brettmas | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 2.0.0 |
| Component: | ui.sortable | Version: | 1.7 |
| Keywords: | Cc: | ||
| Blocked by: | Blocking: |
Description
When revert=false (i.e. no animation of the moved element at the end of the sorting) the filter style isn't cleared and IE stops anti-aliasing the content of the element that was moved.
Filter style is cleared properly when revert=true.
As a fix I have to use this code for the ui.sortable stop event:
stop: function(event, ui) {
if (!jQuery.support.opacity) {
ui.item.each(function() {
this.style.removeAttribute('filter');
});
}
}
Attachments (0)
Change History (4)
Changed May 07, 2009 11:04AM UTC by comment:1
| milestone: | TBD → 1.7.2 |
|---|
Changed May 07, 2009 01:24PM UTC by comment:2
| milestone: | 1.7.2 → 1.8 |
|---|
Changed October 11, 2012 02:54PM UTC by comment:3
| milestone: | 1.9.0 → 2.0.0 |
|---|
Changed October 29, 2012 03:12PM UTC by comment:4
| resolution: | → wontfix |
|---|---|
| status: | new → closed |
Thanks for contributing! This should have been fixed in http://bugs.jquery.com/ticket/6652 . Please feel free to open a new ticket if this is still a problem. This means it's a "won't fix", as it won't be fixed in jQuery UI itself.