Skip to content

Commit

Permalink
Bump to version 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
kylefox committed Jul 12, 2016
1 parent 45291c6 commit 796f7c4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "jquery-tablesort",
"version": "0.0.8",
"version": "0.0.9",
"homepage": "https://github.com/kylefox/jquery-tablesort",
"authors": [
"Kyle Fox <kylefox@gmail.com>"
Expand Down
4 changes: 2 additions & 2 deletions jquery.tablesort.js
@@ -1,7 +1,7 @@
/*
A simple, lightweight jQuery plugin for creating sortable tables.
https://github.com/kylefox/jquery-tablesort
Version 0.0.8
Version 0.0.9
*/

(function($) {
Expand Down Expand Up @@ -42,7 +42,7 @@
if (this.index !== th.index()) {
this.direction = 'asc';
this.index = th.index();
}
}
else if (direction !== 'asc' && direction !== 'desc')
this.direction = this.direction === 'asc' ? 'desc' : 'asc';
else
Expand Down
4 changes: 2 additions & 2 deletions jquery.tablesort.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "jquery-tablesort",
"version": "0.0.8",
"version": "0.0.9",
"description": "A simple, lightweight jQuery plugin for creating sortable tables.",
"main": "jquery.tablesort.js",
"scripts": {
Expand Down

0 comments on commit 796f7c4

Please sign in to comment.