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
94d9e82518
commit
651957606d
21
README.md
21
README.md
@ -44,6 +44,27 @@ 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.14.1">Version 2.14.1</a> (11/22/2013)
|
||||
|
||||
* Filter widget
|
||||
* External inputs bound using the filter `bindSearch` function now clear on the "filterReset" event.
|
||||
* Replace `Array.indexOf()` due to IE8.
|
||||
* Pager (plugin & widget)
|
||||
* Replace `Array.indexOf()` due to IE8. Fixes [issue #388](https://github.com/Mottie/tablesorter/issues/388).
|
||||
* Themes
|
||||
* Non-sortables headers now show the default cursor
|
||||
* Fix Dropbox theme to work properly within the sticky header demo
|
||||
* Fix Ice theme to include a top border in the sticky header demo
|
||||
* Tweaked sticky header widget to better align columns in Firefox & adjust caption to hide border edges.
|
||||
* See the [sticky header demo](http://mottie.github.io/tablesorter/docs/example-widget-sticky-header.html) to see these changes.
|
||||
* Fixes [#407](https://github.com/Mottie/tablesorter/issues/407).
|
||||
* Documentation
|
||||
* Update FAQ page to include information on the zebra widget not always working.
|
||||
* Update demos to use Bootstrap 3.0.2.
|
||||
* Add search instructions to the wiki documentation pages.
|
||||
* Add link to FAQ & search instructions on the main documenation page.
|
||||
* Add associated core version number to pager addon & widget, main widget file and filter formatter file.
|
||||
|
||||
#### <a name="v2.14.0">Version 2.14.0</a> (11/19/2013)
|
||||
|
||||
**Core**
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* tablesorter pager plugin
|
||||
* updated 11/9/2013
|
||||
* updated 11/22/2013 (v2.14.1)
|
||||
*/
|
||||
/*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.14.0",
|
||||
"version": "2.14.1",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**!
|
||||
* TableSorter 2.14.0 - Client-side table sorting with ease!
|
||||
* TableSorter 2.14.1 - 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.14.0";
|
||||
ts.version = "2.14.1";
|
||||
|
||||
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
@ -1,4 +1,4 @@
|
||||
/*! Filter widget formatter functions - updated 11/9/2013
|
||||
/*! Filter widget formatter functions - updated 11/9/2013 (v2.13.3)
|
||||
* requires: tableSorter 2.7.7+ and jQuery 1.4.3+
|
||||
*
|
||||
* uiSpinner (jQuery UI spinner)
|
||||
|
@ -1,4 +1,4 @@
|
||||
/*! Filter widget formatter functions - updated 11/9/2013
|
||||
/*! Filter widget formatter functions - updated 11/9/2013 (v2.13.3)
|
||||
* requires: tableSorter 2.7.7+ and jQuery 1.4.3+
|
||||
* jQuery UI spinner, silder, range slider & datepicker (range)
|
||||
* HTML5 number (spinner), range slider & color selector
|
||||
|
14
js/jquery.tablesorter.widgets.min.js
vendored
14
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 11/9/2013 */
|
||||
/* Pager widget (beta) for TableSorter 11/9/2013 (v2.14.1) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($){
|
||||
"use strict";
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.14.0",
|
||||
"version": "2.14.1",
|
||||
"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.14.0",
|
||||
"version": "2.14.1",
|
||||
"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