mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-29 11:24:10 +01:00
1effb64cfa
On line 605, column.sTitle is set to the TH's innerHTML. On line 1816, column.sTitle is compared with cell.html(). If you have child elements with event handlers on them inside the TH, these are not the same in IE8 (see https://gist.github.com/simonbrent/933e552739477f4be3ab#file-test-html) As a result, the check on 1816 fails, the contents of the cell is replaced, and the event handlers are removed. Comparing instead with cell[0].innerHTML fixes this issue. |
||
---|---|---|
.. | ||
css | ||
images | ||
js | ||
unit_testing |