Skip to content
Permalink
Browse files
Widget: Suppress disabled check when binding destroy to the remove ev…
…ent. Fixes #8769 - Widget: ui-state-disabled blocks destroy to be triggered on remove.
  • Loading branch information
scottgonzalez committed Nov 9, 2012
1 parent d44557f commit 1cdeecc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
@@ -1197,6 +1197,12 @@ test( "._trigger() - instance as element", function() {
});
});

test( "auto-destroy - .remove() when disabled", function() {
shouldDestroy( true, function() {
$( "#widget" ).testWidget({ disabled: true }).remove();
});
});

test( "auto-destroy - .remove() on parent", function() {
shouldDestroy( true, function() {
$( "#widget" ).testWidget().parent().remove();
@@ -232,7 +232,7 @@ $.Widget.prototype = {

if ( element !== this ) {
$.data( element, this.widgetFullName, this );
this._on( this.element, {
this._on( true, this.element, {
remove: function( event ) {
if ( event.target === element ) {
this.destroy();

0 comments on commit 1cdeecc

Please sign in to comment.