Ticket #4361 (closed bug: wontfix)

Opened 4 years ago

Last modified 7 months ago

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:1 Changed 4 years ago by joern.zaefferer

  • Milestone changed from TBD to 1.7.2

comment:2 Changed 4 years ago by joern.zaefferer

  • Milestone changed from 1.7.2 to 1.8

comment:3 Changed 8 months ago by scott.gonzalez

  • Milestone changed from 1.9.0 to 2.0.0

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.