mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
version bump
This commit is contained in:
parent
cd365b38b5
commit
774192bf35
10
README.md
10
README.md
@ -44,6 +44,16 @@ tablesorter can successfully parse and sort many types of data including linked
|
||||
|
||||
View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Change).
|
||||
|
||||
#### <a name="v2.13.2">Version 2.13.2</a> (11/2/2013)
|
||||
|
||||
* Updated pager & filter widget to work when the pager `countChildRows` option is `true`:
|
||||
* Filter widget now properly added a "filtered" class to child rows
|
||||
* Pager plugin & widget now properly calculate a correct total number of rows
|
||||
* See [issue #396](https://github.com/Mottie/tablesorter/issues/396).
|
||||
* Updated editable widget to target table cell children if they exist
|
||||
* This fixes the issue in IE where making a table element contenteditable is not allowed.
|
||||
* See [issue #404](https://github.com/Mottie/tablesorter/issues/404) for further details.
|
||||
|
||||
#### <a name="v2.13.1">Version 2.13.1</a> (10/31/2013)
|
||||
|
||||
* Fixed filter widget issues
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"version": "2.13.1",
|
||||
"version": "2.13.2",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
}
|
||||
|
@ -292,7 +292,7 @@
|
||||
<h4 id="extras">Plugins / Custom Widgets / Custom Parsers</h4>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="example-pager.html">Pager plugin</a><br>
|
||||
<a href="example-pager.html">Pager plugin</a> (<span class="version updated">v2.13.2</span>).<br>
|
||||
<br>
|
||||
</li>
|
||||
<li><a href="example-widget-columns.html">Columns widget</a> (v2.0.17)</li>
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**!
|
||||
* TableSorter 2.13.1 - Client-side table sorting with ease!
|
||||
* TableSorter 2.13.2 - Client-side table sorting with ease!
|
||||
* @requires jQuery v1.2.6+
|
||||
*
|
||||
* Copyright (c) 2007 Christian Bach
|
||||
@ -24,7 +24,7 @@
|
||||
|
||||
var ts = this;
|
||||
|
||||
ts.version = "2.13.1";
|
||||
ts.version = "2.13.2";
|
||||
|
||||
ts.parsers = [];
|
||||
ts.widgets = [];
|
||||
|
4
js/jquery.tablesorter.min.js
vendored
4
js/jquery.tablesorter.min.js
vendored
File diff suppressed because one or more lines are too long
8
js/jquery.tablesorter.widgets.min.js
vendored
8
js/jquery.tablesorter.widgets.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.13.1",
|
||||
"version": "2.13.2",
|
||||
"description": "tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
|
||||
"author": {
|
||||
"name": "Christian Bach",
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.13.1",
|
||||
"version": "2.13.2",
|
||||
"description": "tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes. tablesorter can successfully parse and sort many types of data including linked data in a cell.\n\nThis forked version adds lots of new enhancements including: alphanumeric sorting, pager callback functons, multiple widgets providing column styling, ui theme application, sticky headers, column filters and resizer, as well as extended documentation with a lot more demos.",
|
||||
"author": {
|
||||
"name": "Christian Bach",
|
||||
|
Loading…
Reference in New Issue
Block a user