ScrollResize: remove draw event handler on table destruction

pull/547/head
Joost Molenkamp 2 years ago
parent a25c28206a
commit ca1e5396d9

@ -79,15 +79,14 @@ var ScrollResize = function ( dt )
host.css( 'position', 'relative' ); host.css( 'position', 'relative' );
} }
dt.on( 'draw', function () { dt.on( 'draw.scrollResize', function () {
that._size(); that._size();
} ); } );
var onDestroy = function () { dt.on('destroy.scrollResize', function () {
dt.off('.pageResize', onDestroy); dt.off('.scrollResize');
this.s.obj && this.s.obj.remove(); this.s.obj && this.s.obj.remove();
}.bind(this); }.bind(this));
dt.on('destroy.pageResize', onDestroy);
this._attach(); this._attach();
this._size(); this._size();

Loading…
Cancel
Save