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
5dfc7efba1
commit
4a984eb681
19
README.md
19
README.md
@ -47,6 +47,25 @@ 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.12">Version 2.15.12</a> (3/31/2014)
|
||||
|
||||
* Replaced references to `cell.cellIndex` with `$(cell).index()`
|
||||
* Prevents an error in IE8
|
||||
* Thanks [sylvain-hamel](https://github.com/sylvain-hamel)!
|
||||
* Fixed merge issues, then modified code to minize use of this indexing
|
||||
* Cell column property has correct value again.
|
||||
* Fixes [issue #554](https://github.com/Mottie/tablesorter/pull/554)
|
||||
* Fix docs so nested accordions open with hash.
|
||||
* Child row updates
|
||||
* Added <code>tablesorter-hasChildRow</code> class name to all parents of child rows.
|
||||
* Added `.tablesorter .filtered { display: none; }` to every included theme; needed to properly hide child rows
|
||||
* Fixed pager so that if the last pager row has any child rows, they are now included. Fixes part of [issue #396](https://github.com/Mottie/tablesorter/issues/396).
|
||||
* Fixes [issue #556](https://github.com/Mottie/tablesorter/issues/556).
|
||||
* Add `resizable_widths` option
|
||||
* Set the default & reset header widths using this option
|
||||
* Fixes [issue #555](https://github.com/Mottie/tablesorter/issues/555).
|
||||
* I apologize for the last version error... it is set to 2.5.11 instead of 2.15.11 in the git repo tag. It is correct everywhere else.
|
||||
|
||||
#### <a name="v2.15.11">Version 2.15.11</a> (3/18/2014)
|
||||
|
||||
* Updated Bootstrap to v3.1.1
|
||||
|
@ -1,6 +1,6 @@
|
||||
/*!
|
||||
* tablesorter pager plugin
|
||||
* updated 3/18/2014 (v2.15.11)
|
||||
* updated 3/31/2014 (v2.15.12)
|
||||
*/
|
||||
/*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.11",
|
||||
"version": "2.15.12",
|
||||
"dependencies": {
|
||||
"jquery": ">=1.2.6"
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**!
|
||||
* TableSorter 2.15.11 - Client-side table sorting with ease!
|
||||
* TableSorter 2.15.12 - 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.11";
|
||||
ts.version = "2.15.12";
|
||||
|
||||
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 @@
|
||||
/*! tableSorter 2.15+ widgets - updated 3/18/2014 (v2.15.11)
|
||||
/*! tableSorter 2.15+ widgets - updated 3/31/2014 (v2.15.12)
|
||||
*
|
||||
* Column Styles
|
||||
* Column Filters
|
||||
|
26
js/jquery.tablesorter.widgets.min.js
vendored
26
js/jquery.tablesorter.widgets.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
||||
/* Column Selector/Responsive table widget (beta) for TableSorter 12/17/2013 (v2.15.0)
|
||||
/* Column Selector/Responsive table widget (beta) for TableSorter 3/31/2014 (v2.15.12)
|
||||
* Requires tablesorter v2.8+ and jQuery 1.7+
|
||||
* by Justin Hallett & Rob Garrison
|
||||
*/
|
||||
@ -83,7 +83,7 @@ tsColSel = ts.columnSelector = {
|
||||
// set default state; storage takes priority
|
||||
colSel.states[colId] = saved && typeof(saved[colId]) !== 'undefined' ?
|
||||
saved[colId] : typeof(wo.columnSelector_columns[colId]) !== 'undefined' ?
|
||||
wo.columnSelector_columns[colId] : state === 'true' || !(state === 'false');
|
||||
wo.columnSelector_columns[colId] : (state === 'true' || !(state === 'false'));
|
||||
colSel.$column[colId] = $(this);
|
||||
|
||||
// set default col title
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Pager widget (beta) for TableSorter 3/18/2014 (v2.15.11) */
|
||||
/* Pager widget (beta) for TableSorter 3/31/2014 (v2.15.12) */
|
||||
/*jshint browser:true, jquery:true, unused:false */
|
||||
;(function($){
|
||||
"use strict";
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "tablesorter",
|
||||
"title": "tablesorter",
|
||||
"version": "2.15.11",
|
||||
"version": "2.15.12",
|
||||
"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.11",
|
||||
"version": "2.15.12",
|
||||
"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