Browse Source

reset display during destroy, fixes #741

pull/775/merge
David DeSandro 10 years ago
parent
commit
5f3a2971ac
  1. 10
      js/item.js

10
js/item.js

@ -42,6 +42,16 @@ Item.prototype.updateSortData = function() {
}
};
var _destroy = Item.prototype.destroy;
Item.prototype.destroy = function() {
// call super
_destroy.apply( this, arguments );
// reset display, #741
this.css({
display: ''
});
};
return Item;
}

Loading…
Cancel
Save