mirror of
https://github.com/Mottie/tablesorter.git
synced 2025-01-12 15:24:21 +00:00
version bump
This commit is contained in:
parent
c21437dc1e
commit
8f88f72899
24
README.md
24
README.md
@ -47,6 +47,26 @@ 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.15.14">Version 2.15.14</a> (4/10/2014)
|
||||
|
||||
* Modified `bower.json` to allow "read-components" compatibility. See [PR #573](https://github.com/Mottie/tablesorter/pull/573)
|
||||
* Corrected docs:
|
||||
* Filter-external doc error. Fixes [issue #571](https://github.com/Mottie/tablesorter/issues/571)
|
||||
* Added pager `ajaxProcessing` documentation about extra values available for the output. Fixes [issue #576](https://github.com/Mottie/tablesorter/issues/576).
|
||||
* Grouping widget demo update (now uses collapsible table for options)
|
||||
* Core: Destroy method update
|
||||
* When including a `false` parameter with the destroy method, class names will be left intact as before. But this now includes the reapplying of the uitheme and zebra widgets.
|
||||
|
||||
```js
|
||||
$("table").trigger("destroy", [false]);
|
||||
```
|
||||
|
||||
* This change will maintain the table's appearance.
|
||||
* See this [Stackoverflow question](http://stackoverflow.com/q/22969340/145346) for why this change was made.
|
||||
* Grouping widget: group name now saves after callback. Fixes [issue #514](https://github.com/Mottie/tablesorter/issues/514).
|
||||
* Pager `processAjaxOnInit` now works with jQuery objects. Fixes [issue #572](https://github.com/Mottie/tablesorter/issues/572).
|
||||
* Filter widget: `getFilters` will not cause a js error when it targets a non-tablesorter table.
|
||||
|
||||
#### <a name="v2.15.13">Version 2.15.13</a> (4/3/2014)
|
||||
|
||||
* Core:
|
||||
@ -87,7 +107,3 @@ View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Chan
|
||||
#### <a name="v2.15.10">Version 2.15.10</a> (3/13/2014)
|
||||
|
||||
* Fix `numberSorter` option causing a javascript error & added test.
|
||||
|
||||
#### <a name="v2.15.9">Version 2.15.9</a> (3/12/2014)
|
||||
|
||||
* jQuery UI Filter formatter scripts work again (broken since adding unique namespaces in v2.15.7).
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* tablesorter pager plugin
|
||||
* updated 3/31/2014 (v2.15.12)
|
||||
* updated 4/10/2014 (v2.15.14)
|
||||
*/
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($) {
|
||||
|
4
addons/pager/jquery.tablesorter.pager.min.js
vendored
4
addons/pager/jquery.tablesorter.pager.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"version": "2.15.13",
|
||||
"version": "2.15.14",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
},
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**!
|
||||
* TableSorter 2.15.13 - Client-side table sorting with ease!
|
||||
* TableSorter 2.15.14 - 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.15.13";
|
||||
ts.version = "2.15.14";
|
||||
|
||||
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,4 +1,4 @@
|
||||
/* Pager widget (beta) for TableSorter 3/31/2014 (v2.15.12) */
|
||||
/* Pager widget (beta) for TableSorter 4/10/2014 (v2.15.14) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($){
|
||||
"use strict";
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.15.13",
|
||||
"version": "2.15.14",
|
||||
"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.15.13",
|
||||
"version": "2.15.14",
|
||||
"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