From 1d813bd766d122cf08c9e0493b639839c2b13289 Mon Sep 17 00:00:00 2001 From: Rob Garrison Date: Sat, 31 Oct 2015 11:06:09 -0500 Subject: [PATCH] version bump --- README.md | 97 ++++++++++++++++--- addons/pager/jquery.tablesorter.pager.js | 2 +- dist/js/extras/jquery.dragtable.mod.min.js | 2 +- .../js/extras/jquery.tablesorter.pager.min.js | 2 +- dist/js/jquery.tablesorter.combined.js | 15 +-- dist/js/jquery.tablesorter.combined.min.js | 4 +- dist/js/jquery.tablesorter.js | 4 +- dist/js/jquery.tablesorter.min.js | 2 +- dist/js/jquery.tablesorter.widgets.js | 11 ++- dist/js/jquery.tablesorter.widgets.min.js | 2 +- dist/js/parsers/parser-globalize.min.js | 2 +- dist/js/parsers/parser-input-select.min.js | 2 +- dist/js/widgets/widget-chart.min.js | 2 +- dist/js/widgets/widget-columnSelector.min.js | 2 +- dist/js/widgets/widget-editable.min.js | 2 +- dist/js/widgets/widget-filter.min.js | 2 +- dist/js/widgets/widget-grouping.min.js | 2 +- dist/js/widgets/widget-headerTitles.min.js | 2 +- dist/js/widgets/widget-lazyload.min.js | 2 +- dist/js/widgets/widget-math.min.js | 2 +- dist/js/widgets/widget-output.min.js | 2 +- dist/js/widgets/widget-pager.min.js | 2 +- dist/js/widgets/widget-print.min.js | 2 +- dist/js/widgets/widget-saveSort.min.js | 6 +- dist/js/widgets/widget-scroller.min.js | 2 +- dist/js/widgets/widget-sort2Hash.min.js | 2 +- dist/js/widgets/widget-sortTbodies.min.js | 2 +- dist/js/widgets/widget-staticRow.min.js | 2 +- dist/js/widgets/widget-stickyHeaders.min.js | 2 +- dist/js/widgets/widget-view.min.js | 2 +- docs/example-option-sort-append.html | 2 +- docs/example-pager.html | 2 +- docs/example-widget-column-selector.html | 4 +- docs/example-widget-grouping.html | 24 ++--- docs/example-widget-lazyload.html | 2 +- docs/example-widget-math.html | 10 +- docs/example-widget-pager.html | 2 +- docs/example-widget-sort-to-hash.html | 6 +- docs/example-widget-view.html | 2 +- docs/index.html | 66 ++++++------- js/extras/jquery.dragtable.mod.js | 2 +- js/jquery.tablesorter.combined.js | 15 +-- js/jquery.tablesorter.js | 4 +- js/jquery.tablesorter.widgets.js | 11 ++- js/parsers/parser-globalize.js | 2 +- js/parsers/parser-input-select.js | 2 +- js/widgets/widget-chart.js | 2 +- js/widgets/widget-columnSelector.js | 2 +- js/widgets/widget-editable.js | 2 +- js/widgets/widget-filter.js | 2 +- js/widgets/widget-grouping.js | 2 +- js/widgets/widget-headerTitles.js | 2 +- js/widgets/widget-lazyload.js | 2 +- js/widgets/widget-math.js | 2 +- js/widgets/widget-output.js | 2 +- js/widgets/widget-pager.js | 2 +- js/widgets/widget-print.js | 2 +- js/widgets/widget-saveSort.js | 5 +- js/widgets/widget-scroller.js | 2 +- js/widgets/widget-sort2Hash.js | 2 +- js/widgets/widget-sortTbodies.js | 2 +- js/widgets/widget-staticRow.js | 2 +- js/widgets/widget-stickyHeaders.js | 2 +- js/widgets/widget-view.js | 2 +- package.json | 2 +- tablesorter.jquery.json | 2 +- 66 files changed, 236 insertions(+), 148 deletions(-) diff --git a/README.md b/README.md index b052b764..ce812865 100644 --- a/README.md +++ b/README.md @@ -92,6 +92,89 @@ If you would like to contribute, please... View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes). +#### Version 2.24.0 (10/27/2015) + +* Docs + * Fix mixed content using GitHub buttons on main page. See [pull #1029](https://github.com/Mottie/tablesorter/pull/1029); thanks [OmgImAlexis](https://github.com/OmgImAlexis)! + * Clarify use of pager `ajaxUrl` option. + * Add theme class to tables to prevent FOUC. + * Fix left menu push. The body no longer squeezes the content. + * Update stickyHeaders after menu close. + * Include horizontal scroll while jumping to search result. + * Add some examples (`filter_cssFilter`). +* Global + * Call internal functions directly; stop using triggered events. +* Core + * Use plain javascript to set index attribute & remove unused variable. See [issue #1048](https://github.com/Mottie/tablesorter/issues/1048). + * Add "entire column `colspan`" support. See issues [#485](https://github.com/Mottie/tablesorter/issues/485), [#746](https://github.com/Mottie/tablesorter/issues/746) & [#1047](https://github.com/Mottie/tablesorter/issues/1047). + * Fix parser detect & sortVars on columns that don't exist due to colspan. See issues [#485](https://github.com/Mottie/tablesorter/issues/485), [#746](https://github.com/Mottie/tablesorter/issues/746) & [#1047](https://github.com/Mottie/tablesorter/issues/1047). + * Reformat structure & expand variable names. + * Add `rowFilter` parameter to `getColumnText` function. + * Fix multisort indicators. Fixes [issue #1005](https://github.com/Mottie/tablesorter/issues/1005), again. + * `sortAppend` now accepts an object of column references; see [Stackoverflow](http://stackoverflow.com/q/33177910/145346). + * Internalize sort counter & fix spanned sorts. + * Add `"tablesorter-ready"` event. + * Add widget from class before adding widget options. + * Maintaining support for IE7-8 until 1/12/16. +* Chart + * Fix `chart_layout` column indexing. +* ColumnSelector + * Add `mediaqueryHidden` option. Resolves [issue #964](https://github.com/Mottie/tablesorter/issues/964). + * Extra rows & colspans now supported in `thead` & `tfoot`. Fixes [issue #501](https://github.com/Mottie/tablesorter/issues/501). + * Fix jscs reported issues. +* Filter + * Encode/decode filters in case they end up in cookies. See [issue #1026](https://github.com/Mottie/tablesorter/issues/1026). + * Add "entire column `colspan`" support. See issues [#485](https://github.com/Mottie/tablesorter/issues/485), [#746](https://github.com/Mottie/tablesorter/issues/746) & [#1047](https://github.com/Mottie/tablesorter/issues/1047). + * `hideFilters` applies to stickyHeaders again. Fixes [issue #1050](https://github.com/Mottie/tablesorter/issues/1050). + * Prevent error in `formatterUpdated`. Fixes [issue #1056](https://github.com/Mottie/tablesorter/issues/1056). +* Grouping + * Prevent error if `group_forceColumn` is improperly defined. See [issue #1030](https://github.com/Mottie/tablesorter/issues/1030). + * Improve compatibility with [jQuery Globalize](https://github.com/jquery/globalize); Find [more details here](http://mottie.github.io/tablesorter/docs/example-widget-grouping.html#globalization). + * Update header in pager with `removeRows:true`. Fixes [issue #1035](https://github.com/Mottie/tablesorter/issues/1035). +* HeaderTitles + * Switch to use internalized sort counter. +* Lazyload + * Add new widget. [Demo](http://mottie.github.io/tablesorter/docs/example-widget-lazyload.html) +* Math + * Created new calculation type "below". It works just like "above" except in other direction starting from top to bottom. See [pull #1027](https://github.com/Mottie/tablesorter/pull/1027); thanks [LvLynx](https://github.com/LvLynx)! + * Tweak changes & more tweaks for better compression. + * Detach table prior to indexing all cells. See [issue #1048](https://github.com/Mottie/tablesorter/issues/1048). + * Add `math_none` option. + * Include `config` parameter in math equations - needed for `math_none` option. +* Output + * Correct `formatContent` function comment (missing widgetOptions variable) + * Do not include nested table headers with parent. Fixes [issue #1040](https://github.com/Mottie/tablesorter/issues/1040). +* Pager + * Clear tbody if no data returned by ajax. See [issue #1032](https://github.com/Mottie/tablesorter/issues/1032). + * Add "all" setting for page size methods; includes select option & all methods. See [issue #1055](https://github.com/Mottie/tablesorter/issues/1055). + * Fix pager widget demo destroy method. + * destroyPager again reveals all rows. Fixes [issue #1055](https://github.com/Mottie/tablesorter/issues/1055). + * Parse page numbers to prevent user seeing `NaN`. + * Parse page size updates. +* Print + * Internal variable tweaks. + * Include css to hide filter rows. Fixes [issue #1046](https://github.com/Mottie/tablesorter/issues/1046). + * Add print delay; allows browsers to render print preview. +* Scroller + * Fix `scroller_barWidth` issue in iOS. See [pull #1062](https://github.com/Mottie/tablesorter/pull/1062); thanks [fire-wally](https://github.com/fire-wally)! +* Sort2Hash + * Update to include pager (page & size) and filter parameters. +* SortTbodies + * Moved config string defaults to `$.tablesorter.strings` to match core reformatting. +* StickyHeaders + * `hideFilters` applies to stickyHeaders again. Fixes [issue #1050](https://github.com/Mottie/tablesorter/issues/1050). +* View + * Add new widget. [Demo](http://mottie.github.io/tablesorter/docs/example-widget-view.html). + * Fix jscs reported issues. +* Parsers + * Globalize parser now allows a different language per column. + * Fix jscs reported issues. +* Misc + * Bower: use correct theme name. Fixes [issue #1028](https://github.com/Mottie/tablesorter/issues/1028). + * Readme: Add link to [UserFrosting](https://github.com/alexweissman/UserFrosting) by [alexweissman](https://github.com/alexweissman) + * Updated build dependencies x2. + * Added development files & directories to bower ignore. See [pull #1063](https://github.com/Mottie/tablesorter/pull/1063); thanks [jdufresne](https://github.com/jdufresne)! + #### Version 2.23.5 (10/4/2015) * Core: @@ -122,17 +205,3 @@ View the [complete change log here](//github.com/Mottie/tablesorter/wiki/Changes * Add `filter_childWithSIbs` option. Fixes [issue #1020](https://github.com/Mottie/tablesorter/issues/1020). * Build * Update dependencies. - -#### Version 2.23.3 (9/1/2015) - -* Docs: - * Correction to `dateFormat` demo. -* Core: - * Corrected sorting of col/rowspan in `thead`. Fixes [issue #1005](https://github.com/Mottie/tablesorter/issues/1005). - * Correct header sort indicators in row/colspans. Fixes [issue #1005](https://github.com/Mottie/tablesorter/issues/1005). -* Filter: - * Use namespacing when binding reset. Fixes [issue #1001](https://github.com/Mottie/tablesorter/issues/1001). - * Restore triggered change namespace & prevent search before init. Fixes [issue #1002](https://github.com/Mottie/tablesorter/issues/1002). -* Group: - * Remove unused variable. - * Add `group_forceColumn` & `group_enforceSort` options. Fixes [issue #1000](https://github.com/Mottie/tablesorter/issues/1000). diff --git a/addons/pager/jquery.tablesorter.pager.js b/addons/pager/jquery.tablesorter.pager.js index 7162037b..aeb0aa4a 100644 --- a/addons/pager/jquery.tablesorter.pager.js +++ b/addons/pager/jquery.tablesorter.pager.js @@ -1,6 +1,6 @@ /*! * tablesorter (FORK) pager plugin - * updated 10/4/2015 (v2.23.5) + * updated 10/31/2015 (v2.24.0) */ /*jshint browser:true, jquery:true, unused:false */ ;(function($) { diff --git a/dist/js/extras/jquery.dragtable.mod.min.js b/dist/js/extras/jquery.dragtable.mod.min.js index 0525da60..b0cfaeec 100644 --- a/dist/js/extras/jquery.dragtable.mod.min.js +++ b/dist/js/extras/jquery.dragtable.mod.min.js @@ -1,4 +1,4 @@ -/*! Dragtable Mod for TableSorter - 2/7/2015 (v2.19.0) */ +/*! Dragtable Mod for TableSorter - updated 10/31/2015 (v2.24.0) */ /* * Requires * tablesorter v2.8+ diff --git a/dist/js/extras/jquery.tablesorter.pager.min.js b/dist/js/extras/jquery.tablesorter.pager.min.js index d538cd99..16f07aa7 100644 --- a/dist/js/extras/jquery.tablesorter.pager.min.js +++ b/dist/js/extras/jquery.tablesorter.pager.min.js @@ -1,6 +1,6 @@ /*! * tablesorter (FORK) pager plugin - * updated 10/4/2015 (v2.23.5) + * updated 10/31/2015 (v2.24.0) */ /*jshint browser:true, jquery:true, unused:false */ !function(a){"use strict";/*jshint supernew:true */ diff --git a/dist/js/jquery.tablesorter.combined.js b/dist/js/jquery.tablesorter.combined.js index 953ae4b9..1df83b3b 100644 --- a/dist/js/jquery.tablesorter.combined.js +++ b/dist/js/jquery.tablesorter.combined.js @@ -1,4 +1,4 @@ -/*! tablesorter (FORK) - updated 10-31-2015 (v2.23.5)*/ +/*! tablesorter (FORK) - updated 10-31-2015 (v2.24.0)*/ /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */ (function(factory) { if (typeof define === 'function' && define.amd) { @@ -10,7 +10,7 @@ } }(function($) { -/*! TableSorter (FORK) v2.23.5 *//* +/*! TableSorter (FORK) v2.24.0 *//* * Client-side table sorting with ease! * @requires jQuery v1.2.6+ * @@ -33,7 +33,7 @@ 'use strict'; var ts = $.tablesorter = { - version : '2.23.5', + version : '2.24.0', parsers : [], widgets : [], @@ -2954,7 +2954,7 @@ })(jQuery); -/*! Widget: filter - updated 10/4/2015 (v2.23.5) *//* +/*! Widget: filter - updated 10/31/2015 (v2.24.0) *//* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison */ @@ -4676,7 +4676,7 @@ })( jQuery ); -/*! Widget: stickyHeaders - updated 3/26/2015 (v2.21.3) *//* +/*! Widget: stickyHeaders - updated 10/31/2015 (v2.24.0) *//* * Requires tablesorter v2.8+ and jQuery 1.4.3+ * by Rob Garrison */ @@ -5360,7 +5360,10 @@ })( jQuery, window ); -/*! Widget: saveSort */ +/*! Widget: saveSort - updated 10/31/2015 (v2.24.0) *//* +* Requires tablesorter v2.16+ +* by Rob Garrison +*/ ;(function ($) { 'use strict'; var ts = $.tablesorter || {}; diff --git a/dist/js/jquery.tablesorter.combined.min.js b/dist/js/jquery.tablesorter.combined.min.js index 4ef3e0da..d3eab1e8 100644 --- a/dist/js/jquery.tablesorter.combined.min.js +++ b/dist/js/jquery.tablesorter.combined.min.js @@ -4,9 +4,9 @@ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██ █████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀ */ -/*! tablesorter (FORK) - updated 10-31-2015 (v2.23.5)*/ +/*! tablesorter (FORK) - updated 10-31-2015 (v2.24.0)*/ /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */ -!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&"object"==typeof module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return function(a){"use strict";var b=a.tablesorter={version:"2.23.5",parsers:[],widgets:[],defaults:{ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&"object"==typeof module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return function(a){"use strict";var b=a.tablesorter={version:"2.24.0",parsers:[],widgets:[],defaults:{ // *** appearance theme:"default",// adds tablesorter-{theme} to the table for styling widthFixed:!1,// adds colgroup to fix widths of columns diff --git a/dist/js/jquery.tablesorter.js b/dist/js/jquery.tablesorter.js index d498dd81..7d391398 100644 --- a/dist/js/jquery.tablesorter.js +++ b/dist/js/jquery.tablesorter.js @@ -8,7 +8,7 @@ } }(function($) { -/*! TableSorter (FORK) v2.23.5 *//* +/*! TableSorter (FORK) v2.24.0 *//* * Client-side table sorting with ease! * @requires jQuery v1.2.6+ * @@ -31,7 +31,7 @@ 'use strict'; var ts = $.tablesorter = { - version : '2.23.5', + version : '2.24.0', parsers : [], widgets : [], diff --git a/dist/js/jquery.tablesorter.min.js b/dist/js/jquery.tablesorter.min.js index 72010ee8..1dfcee59 100644 --- a/dist/js/jquery.tablesorter.min.js +++ b/dist/js/jquery.tablesorter.min.js @@ -1,4 +1,4 @@ -!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&"object"==typeof module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return function(a){"use strict";var b=a.tablesorter={version:"2.23.5",parsers:[],widgets:[],defaults:{ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&"object"==typeof module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return function(a){"use strict";var b=a.tablesorter={version:"2.24.0",parsers:[],widgets:[],defaults:{ // *** appearance theme:"default",// adds tablesorter-{theme} to the table for styling widthFixed:!1,// adds colgroup to fix widths of columns diff --git a/dist/js/jquery.tablesorter.widgets.js b/dist/js/jquery.tablesorter.widgets.js index a5a58568..c02e3d6a 100644 --- a/dist/js/jquery.tablesorter.widgets.js +++ b/dist/js/jquery.tablesorter.widgets.js @@ -1,4 +1,4 @@ -/*! tablesorter (FORK) - updated 10-31-2015 (v2.23.5)*/ +/*! tablesorter (FORK) - updated 10-31-2015 (v2.24.0)*/ /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */ (function(factory) { if (typeof define === 'function' && define.amd) { @@ -366,7 +366,7 @@ })(jQuery); -/*! Widget: filter - updated 10/4/2015 (v2.23.5) *//* +/*! Widget: filter - updated 10/31/2015 (v2.24.0) *//* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison */ @@ -2088,7 +2088,7 @@ })( jQuery ); -/*! Widget: stickyHeaders - updated 3/26/2015 (v2.21.3) *//* +/*! Widget: stickyHeaders - updated 10/31/2015 (v2.24.0) *//* * Requires tablesorter v2.8+ and jQuery 1.4.3+ * by Rob Garrison */ @@ -2772,7 +2772,10 @@ })( jQuery, window ); -/*! Widget: saveSort */ +/*! Widget: saveSort - updated 10/31/2015 (v2.24.0) *//* +* Requires tablesorter v2.16+ +* by Rob Garrison +*/ ;(function ($) { 'use strict'; var ts = $.tablesorter || {}; diff --git a/dist/js/jquery.tablesorter.widgets.min.js b/dist/js/jquery.tablesorter.widgets.min.js index cef04323..638ca5b3 100644 --- a/dist/js/jquery.tablesorter.widgets.min.js +++ b/dist/js/jquery.tablesorter.widgets.min.js @@ -4,7 +4,7 @@ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██ █████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀ */ -/*! tablesorter (FORK) - updated 10-31-2015 (v2.23.5)*/ +/*! tablesorter (FORK) - updated 10-31-2015 (v2.24.0)*/ /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */ !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof module&&"object"==typeof module.exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){return function(a,b,c){"use strict";var d=a.tablesorter||{}; // *** Store data in local storage, with a cookie fallback *** diff --git a/dist/js/parsers/parser-globalize.min.js b/dist/js/parsers/parser-globalize.min.js index 2b22c331..96fb3e8d 100644 --- a/dist/js/parsers/parser-globalize.min.js +++ b/dist/js/parsers/parser-globalize.min.js @@ -1,4 +1,4 @@ -/*! Parser: jQuery Globalize - updated 10/26/2015 (v2.23.6) */ +/*! Parser: jQuery Globalize - updated 10/31/2015 (v2.24.0) */ /* Extract localized data using jQuery's Globalize parsers; set Globalize.locale( 'xx' ) in the globalize settings */ /*jshint jquery:true, newcap: false */ diff --git a/dist/js/parsers/parser-input-select.min.js b/dist/js/parsers/parser-input-select.min.js index ddf76e23..664fa993 100644 --- a/dist/js/parsers/parser-input-select.min.js +++ b/dist/js/parsers/parser-input-select.min.js @@ -1,4 +1,4 @@ -/*! Parser: input & select - updated 8/17/2015 (v2.23.0) */ +/*! Parser: input & select - updated 10/31/2015 (v2.24.0) */ /* * for jQuery 1.7+ & tablesorter 2.7.11+ * Demo: http://mottie.github.com/tablesorter/docs/example-widget-grouping.html diff --git a/dist/js/widgets/widget-chart.min.js b/dist/js/widgets/widget-chart.min.js index 23e48eea..150c29ab 100644 --- a/dist/js/widgets/widget-chart.min.js +++ b/dist/js/widgets/widget-chart.min.js @@ -1,4 +1,4 @@ -/* Widget: chart (beta) - updated 2/7/2015 (v2.19.0) */ +/* Widget: chart (beta) - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ */ diff --git a/dist/js/widgets/widget-columnSelector.min.js b/dist/js/widgets/widget-columnSelector.min.js index 88da6693..0b5a5d62 100644 --- a/dist/js/widgets/widget-columnSelector.min.js +++ b/dist/js/widgets/widget-columnSelector.min.js @@ -1,4 +1,4 @@ -/* Widget: columnSelector (responsive table widget) - updated 8/23/2015 (v2.23.2) */ +/* Widget: columnSelector (responsive table widget) - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Justin Hallett & Rob Garrison diff --git a/dist/js/widgets/widget-editable.min.js b/dist/js/widgets/widget-editable.min.js index de2c2cbb..f73443a7 100644 --- a/dist/js/widgets/widget-editable.min.js +++ b/dist/js/widgets/widget-editable.min.js @@ -1,4 +1,4 @@ -/*! Widget: editable - updated 8/17/2015 (v2.23.0) */ +/*! Widget: editable - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison diff --git a/dist/js/widgets/widget-filter.min.js b/dist/js/widgets/widget-filter.min.js index cb330356..2e24cfb5 100644 --- a/dist/js/widgets/widget-filter.min.js +++ b/dist/js/widgets/widget-filter.min.js @@ -1,4 +1,4 @@ -/*! Widget: filter - updated 10/4/2015 (v2.23.5) */ +/*! Widget: filter - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison diff --git a/dist/js/widgets/widget-grouping.min.js b/dist/js/widgets/widget-grouping.min.js index aaa66625..4b6c0194 100644 --- a/dist/js/widgets/widget-grouping.min.js +++ b/dist/js/widgets/widget-grouping.min.js @@ -1,4 +1,4 @@ -/*! Widget: grouping - updated 10/25/2015 (v2.23.6) */ +/*! Widget: grouping - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison diff --git a/dist/js/widgets/widget-headerTitles.min.js b/dist/js/widgets/widget-headerTitles.min.js index 9a56559e..c03dfa37 100644 --- a/dist/js/widgets/widget-headerTitles.min.js +++ b/dist/js/widgets/widget-headerTitles.min.js @@ -1,4 +1,4 @@ -/*! Widget: headerTitles - updated 3/5/2014 (v2.15.6) */ +/*! Widget: headerTitles - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison diff --git a/dist/js/widgets/widget-lazyload.min.js b/dist/js/widgets/widget-lazyload.min.js index 5cd097d9..0b0863dc 100644 --- a/dist/js/widgets/widget-lazyload.min.js +++ b/dist/js/widgets/widget-lazyload.min.js @@ -1,4 +1,4 @@ -/*! Widget: lazyload - 10/25/2015 (v2.23.6) */ +/*! Widget: lazyload (BETA) - 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison diff --git a/dist/js/widgets/widget-math.min.js b/dist/js/widgets/widget-math.min.js index f98a2a6e..fa3730fe 100644 --- a/dist/js/widgets/widget-math.min.js +++ b/dist/js/widgets/widget-math.min.js @@ -1,4 +1,4 @@ -/*! Widget: math - updated 7/28/2015 (v2.22.4) */ +/*! Widget: math - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.16+ and jQuery 1.7+ * by Rob Garrison diff --git a/dist/js/widgets/widget-output.min.js b/dist/js/widgets/widget-output.min.js index 093dfd33..f9ae82d1 100644 --- a/dist/js/widgets/widget-output.min.js +++ b/dist/js/widgets/widget-output.min.js @@ -1,4 +1,4 @@ -/*! Widget: output - updated 7/28/2015 (v2.22.4) */ +/*! Widget: output - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.7+ * Modified from: diff --git a/dist/js/widgets/widget-pager.min.js b/dist/js/widgets/widget-pager.min.js index 993810f5..c33b498b 100644 --- a/dist/js/widgets/widget-pager.min.js +++ b/dist/js/widgets/widget-pager.min.js @@ -1,4 +1,4 @@ -/*! Widget: Pager - updated 10/4/2015 (v2.23.5) */ +/*! Widget: Pager - updated 10/31/2015 (v2.24.0) */ /* Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison */ diff --git a/dist/js/widgets/widget-print.min.js b/dist/js/widgets/widget-print.min.js index 870f86bd..fef468d3 100644 --- a/dist/js/widgets/widget-print.min.js +++ b/dist/js/widgets/widget-print.min.js @@ -1,4 +1,4 @@ -/* Widget: print - updated 2/7/2015 (v2.19.0) */ +/* Widget: print - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.2.6+ */ diff --git a/dist/js/widgets/widget-saveSort.min.js b/dist/js/widgets/widget-saveSort.min.js index 44ecaae0..c1500c0a 100644 --- a/dist/js/widgets/widget-saveSort.min.js +++ b/dist/js/widgets/widget-saveSort.min.js @@ -1,4 +1,8 @@ -/*! Widget: saveSort */ +/*! Widget: saveSort - updated 10/31/2015 (v2.24.0) */ +/* +* Requires tablesorter v2.16+ +* by Rob Garrison +*/ !function(a){"use strict";var b=a.tablesorter||{}; // this widget saves the last sort only if the // saveSort widget option is true AND the diff --git a/dist/js/widgets/widget-scroller.min.js b/dist/js/widgets/widget-scroller.min.js index 9a575020..13902fbd 100644 --- a/dist/js/widgets/widget-scroller.min.js +++ b/dist/js/widgets/widget-scroller.min.js @@ -1,4 +1,4 @@ -/*! Widget: scroller - updated 7/28/2015 (v2.22.4) */ +/*! Widget: scroller - updated 10/31/2015 (v2.24.0) */ /* Copyright (C) 2011 T. Connell & Associates, Inc. diff --git a/dist/js/widgets/widget-sort2Hash.min.js b/dist/js/widgets/widget-sort2Hash.min.js index d628d426..377b1170 100644 --- a/dist/js/widgets/widget-sort2Hash.min.js +++ b/dist/js/widgets/widget-sort2Hash.min.js @@ -1,4 +1,4 @@ -/*! Widget: sort2Hash - updated 10/30/2015 (v2.23.6) */ +/*! Widget: sort2Hash (BETA) - updated 10/31/2015 (v2.24.0) */ /* Requires tablesorter v2.8+ and jQuery 1.7+ * by Rob Garrison */ diff --git a/dist/js/widgets/widget-sortTbodies.min.js b/dist/js/widgets/widget-sortTbodies.min.js index 975d0b9f..cb219be9 100644 --- a/dist/js/widgets/widget-sortTbodies.min.js +++ b/dist/js/widgets/widget-sortTbodies.min.js @@ -1,4 +1,4 @@ -/*! tablesorter tbody sorting widget (BETA) - 6/10/2015 (core v2.22.2) +/*! tablesorter tbody sorting widget (BETA) - 10/31/2015 (v2.24.0) * Requires tablesorter v2.22.2+ and jQuery 1.4+ * by Rob Garrison */ diff --git a/dist/js/widgets/widget-staticRow.min.js b/dist/js/widgets/widget-staticRow.min.js index e589b431..3c1456a1 100644 --- a/dist/js/widgets/widget-staticRow.min.js +++ b/dist/js/widgets/widget-staticRow.min.js @@ -1,4 +1,4 @@ -/*! widget: staticRow - updated 2/9/2015 (v2.19.1) */ +/*! widget: staticRow - updated 10/31/2015 (v2.24.0) */ /* * Version 1.2 mod by Rob Garrison (requires tablesorter v2.16+) * Requires: diff --git a/dist/js/widgets/widget-stickyHeaders.min.js b/dist/js/widgets/widget-stickyHeaders.min.js index c1593209..3c163f4f 100644 --- a/dist/js/widgets/widget-stickyHeaders.min.js +++ b/dist/js/widgets/widget-stickyHeaders.min.js @@ -1,4 +1,4 @@ -/*! Widget: stickyHeaders - updated 3/26/2015 (v2.21.3) */ +/*! Widget: stickyHeaders - updated 10/31/2015 (v2.24.0) */ /* * Requires tablesorter v2.8+ and jQuery 1.4.3+ * by Rob Garrison diff --git a/dist/js/widgets/widget-view.min.js b/dist/js/widgets/widget-view.min.js index e9506ebb..6c922705 100644 --- a/dist/js/widgets/widget-view.min.js +++ b/dist/js/widgets/widget-view.min.js @@ -1,4 +1,4 @@ -/* Widget: view (beta) - updated 10/26/2015 (v2.23.6) */ +/* Widget: view (beta) - updated 10/31/2015 (v2.24.0) */ /* By Justin F. Hallett (https://github.com/TheSin-) * Requires tablesorter v2.8+ and jQuery 1.7+ */ diff --git a/docs/example-option-sort-append.html b/docs/example-option-sort-append.html index eaf90647..d10d07ff 100644 --- a/docs/example-option-sort-append.html +++ b/docs/example-option-sort-append.html @@ -76,7 +76,7 @@ $(function() {

NOTE!

diff --git a/docs/example-pager.html b/docs/example-pager.html index 669bedcc..439b8ef0 100644 --- a/docs/example-pager.html +++ b/docs/example-pager.html @@ -236,7 +236,7 @@

NOTE! The following are not part of the original plugin: