You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for reporting this issue! I don't have the original IE8 to test this code, so I appreciate the help :)
But could you please test this for me, instead of the code change you proposed, would just changing the outer if statement (line 964) produce the same result?
if(mx&&a){
Ahh, nevermind... I'll stick with your suggestion :P
On IE8, I get the following error when initializing tablesorter:
'length' is null or not an object (jquery.tablesorter.js:966)
Fixed this myself by changing the line from:
var i, l = a.length, n = mx + d;
... to:
var i, l = (a ? a.length : 0), n = mx + d;
The text was updated successfully, but these errors were encountered: