mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-12-05 05:04:20 +00:00
version bump
This commit is contained in:
parent
21b205dcd3
commit
3a12af8e85
10
README.md
10
README.md
@ -47,6 +47,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).
|
View the [complete listing here](https://github.com/Mottie/tablesorter/wiki/Change).
|
||||||
|
|
||||||
|
#### <a name="v2.16.1">Version 2.16.1-beta</a> (4/22/2014)
|
||||||
|
|
||||||
|
* Docs:
|
||||||
|
* Add note about using buttons in forms (include `type="button"`). Fixes [issue #543](https://github.com/Mottie/tablesorter/issues/543).
|
||||||
|
* Add example link to select2 demo for the `filter_selectSource` entry.
|
||||||
|
* Filter widget: setFilters now supports passing it a jQuery table object
|
||||||
|
* Static Row widget
|
||||||
|
* Add more inline comments
|
||||||
|
* Fix issue with not repositioning static row properly within mutliple tbodies.
|
||||||
|
|
||||||
#### <a name="v2.16.0">Version 2.16.0-beta</a> (4/20/2014)
|
#### <a name="v2.16.0">Version 2.16.0-beta</a> (4/20/2014)
|
||||||
|
|
||||||
* Doc & testing updates
|
* Doc & testing updates
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "tablesorter",
|
"name": "tablesorter",
|
||||||
"version": "2.16.0-beta",
|
"version": "2.16.1-beta",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery": ">=1.2.6"
|
"jquery": ">=1.2.6"
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/**!
|
/**!
|
||||||
* TableSorter 2.16.0 beta - Client-side table sorting with ease!
|
* TableSorter 2.16.1-beta - Client-side table sorting with ease!
|
||||||
* @requires jQuery v1.2.6+
|
* @requires jQuery v1.2.6+
|
||||||
*
|
*
|
||||||
* Copyright (c) 2007 Christian Bach
|
* Copyright (c) 2007 Christian Bach
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
var ts = this;
|
var ts = this;
|
||||||
|
|
||||||
ts.version = "2.16.0-beta";
|
ts.version = "2.16.1-beta";
|
||||||
|
|
||||||
ts.parsers = [];
|
ts.parsers = [];
|
||||||
ts.widgets = [];
|
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
@ -1,4 +1,4 @@
|
|||||||
/*! Filter widget formatter functions - updated 4/20/2014 (v2.16)
|
/*! Filter widget formatter functions - updated 4/22/2014 (v2.16.1-beta)
|
||||||
* requires: jQuery 1.7.2+, tableSorter 2.16+, filter widget 2.16+ and select2 v3.4.6+ plugin
|
* requires: jQuery 1.7.2+, tableSorter 2.16+, filter widget 2.16+ and select2 v3.4.6+ plugin
|
||||||
*/
|
*/
|
||||||
/*jshint browser:true, jquery:true, unused:false */
|
/*jshint browser:true, jquery:true, unused:false */
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/*! tableSorter 2.16+ widgets - updated 4/20/2014 (v2.16.0)
|
/*! tableSorter 2.16+ widgets - updated 4/22/2014 (v2.16.1-beta)
|
||||||
*
|
*
|
||||||
* Column Styles
|
* Column Styles
|
||||||
* Column Filters
|
* Column Filters
|
||||||
|
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,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* StaticRow widget for jQuery TableSorter 2.0
|
* StaticRow widget for jQuery TableSorter 2.0
|
||||||
* Version 1.1 - modified by Rob Garrison (4/19/2014 for tablesorter v2.16.0)
|
* Version 1.1 - modified by Rob Garrison (4/22/2014 for tablesorter v2.16.1-beta)
|
||||||
* Requires:
|
* Requires:
|
||||||
* jQuery v1.4+
|
* jQuery v1.4+
|
||||||
* tablesorter plugin, v2.8+, available at http://mottie.github.com/tablesorter/docs/
|
* tablesorter plugin, v2.8+, available at http://mottie.github.com/tablesorter/docs/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "tablesorter",
|
"name": "tablesorter",
|
||||||
"title": "tablesorter",
|
"title": "tablesorter",
|
||||||
"version": "2.16.0-beta",
|
"version": "2.16.1-beta",
|
||||||
"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.",
|
"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": {
|
"author": {
|
||||||
"name": "Christian Bach",
|
"name": "Christian Bach",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "tablesorter",
|
"name": "tablesorter",
|
||||||
"title": "tablesorter",
|
"title": "tablesorter",
|
||||||
"version": "2.16.0-beta",
|
"version": "2.16.1-beta",
|
||||||
"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.",
|
"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": {
|
"author": {
|
||||||
"name": "Christian Bach",
|
"name": "Christian Bach",
|
||||||
|
Loading…
Reference in New Issue
Block a user