We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When clicking on a column to sort, the new sorting column isn't stored in $th.
Example : tablesort.sort($("th.t1"))
tablesort.sort($("th.t1"))
tablesort.$th is now th.t1 element
Then, clicking on th.t2 column to sort
tablesort.$th is still th.t1 element. No update.
Proposed fix : Store new sorted column element in $th
The text was updated successfully, but these errors were encountered:
Fix issue kylefox#45
f179ad8
Memorize current sorted column when sorted by click.
No branches or pull requests
When clicking on a column to sort, the new sorting column isn't stored in $th.
Example :
tablesort.sort($("th.t1"))
Then, clicking on th.t2 column to sort
Proposed fix :
Store new sorted column element in $th
The text was updated successfully, but these errors were encountered: