DataTables / FixedHeader

Fix the header, footer, left or right columns of a table in place, to always show them when scrolling
http://www.datatables.net/
Other
75 stars 83 forks source link

Remove on-destroy error, incorrect context #63

Closed tsu-complete closed 9 years ago

tsu-complete commented 9 years ago

Line 155 in build:

$(window).off( this.s.namespace );

should read:

$(window).off( that.s.namespace );

(change from this to that, this context does not exist as needed in callback)

DataTables commented 9 years ago

Thanks!