Merge pull request #542 from JMolenkamp/master

Remove resize helper object on table destruction
pull/543/head
Allan Jardine 2 years ago committed by GitHub
commit bc21f6cfed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -83,6 +83,12 @@ var PageResize = function ( dt, pageResizeManualDelta )
host.css( 'position', 'relative' );
}
var onDestroy = function () {
dt.off('.pageResize', onDestroy);
this.s.obj && this.s.obj.remove();
}.bind(this);
dt.on('destroy.pageResize', onDestroy);
this._attach();
this._size();
};
@ -163,6 +169,8 @@ PageResize.prototype = {
obj
.appendTo( this.s.host )
.attr( 'data', 'about:blank' );
this.s.obj = obj;
}
};

Loading…
Cancel
Save