Ticket #4361 (closed bug: wontfix)
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: | ||
| Blocking: | Blocked by: |
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');
});
}
}
Change History
comment:4 Changed 7 months ago by mikesherov
- Status changed from new to closed
- Resolution set to wontfix
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.
Note: See
TracTickets for help on using
tickets.

