jquery-tablesorter 1.23.8 → 1.23.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/jquery-tablesorter/version.rb +1 -1
- data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.combined.js +4 -4
- data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.js +3 -3
- data/vendor/assets/javascripts/jquery-tablesorter/jquery.tablesorter.widgets.js +1 -1
- data/vendor/assets/javascripts/jquery-tablesorter/widgets/widget-math.js +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ce7b71028de4f04b9a86e61b7b933b06e68e646
|
4
|
+
data.tar.gz: f5168b4ec2d63cb8dfdcfc005f008dc468e823fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c04f89adb80a916ad5fb0361cf28dbc4984e721d39522125d72a8e62b497e89a925744d11d7c9811572d22dcd136b94c6a213b69306e6dfa6fd538d276502e8
|
7
|
+
data.tar.gz: 651032d324624fe4ac459fa3e7b7c431b371fd3bc2f1ef0ce394c4bce4d6c6dd8841138dd9b89c6d2c41315c1a9c220dd25e7139966786ee8549f8e2868dcc90
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
Simple integration of jQuery tablesorter ([Mottie's fork]) into the asset pipeline.
|
6
6
|
|
7
|
-
Current tablesorter version: 2.28.
|
7
|
+
Current tablesorter version: 2.28.9 (5/3/2017), [documentation]
|
8
8
|
|
9
9
|
Any issue associated with the js/css files, please report to [Mottie's fork].
|
10
10
|
|
@@ -4,7 +4,7 @@
|
|
4
4
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██
|
5
5
|
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
|
6
6
|
*/
|
7
|
-
/*! tablesorter (FORK) - updated
|
7
|
+
/*! tablesorter (FORK) - updated 05-03-2017 (v2.28.9)*/
|
8
8
|
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
9
9
|
(function(factory) {
|
10
10
|
if (typeof define === 'function' && define.amd) {
|
@@ -16,7 +16,7 @@
|
|
16
16
|
}
|
17
17
|
}(function(jQuery) {
|
18
18
|
|
19
|
-
/*! TableSorter (FORK) v2.28.
|
19
|
+
/*! TableSorter (FORK) v2.28.9 *//*
|
20
20
|
* Client-side table sorting with ease!
|
21
21
|
* @requires jQuery v1.2.6+
|
22
22
|
*
|
@@ -40,7 +40,7 @@
|
|
40
40
|
'use strict';
|
41
41
|
var ts = $.tablesorter = {
|
42
42
|
|
43
|
-
version : '2.28.
|
43
|
+
version : '2.28.9',
|
44
44
|
|
45
45
|
parsers : [],
|
46
46
|
widgets : [],
|
@@ -1949,7 +1949,7 @@
|
|
1949
1949
|
for ( indx = 0; indx < len; indx++ ) {
|
1950
1950
|
widget = ts.getWidgetById( c.widgets[ indx ] );
|
1951
1951
|
if ( widget && widget.options ) {
|
1952
|
-
wo = $.extend( {}, widget.options );
|
1952
|
+
wo = $.extend( true, {}, widget.options );
|
1953
1953
|
c.widgetOptions = $.extend( true, wo, c.widgetOptions );
|
1954
1954
|
// add widgetOptions to defaults for option validator
|
1955
1955
|
$.extend( true, ts.defaults.widgetOptions, widget.options );
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! TableSorter (FORK) v2.28.
|
1
|
+
/*! TableSorter (FORK) v2.28.9 *//*
|
2
2
|
* Client-side table sorting with ease!
|
3
3
|
* @requires jQuery v1.2.6+
|
4
4
|
*
|
@@ -22,7 +22,7 @@
|
|
22
22
|
'use strict';
|
23
23
|
var ts = $.tablesorter = {
|
24
24
|
|
25
|
-
version : '2.28.
|
25
|
+
version : '2.28.9',
|
26
26
|
|
27
27
|
parsers : [],
|
28
28
|
widgets : [],
|
@@ -1931,7 +1931,7 @@
|
|
1931
1931
|
for ( indx = 0; indx < len; indx++ ) {
|
1932
1932
|
widget = ts.getWidgetById( c.widgets[ indx ] );
|
1933
1933
|
if ( widget && widget.options ) {
|
1934
|
-
wo = $.extend( {}, widget.options );
|
1934
|
+
wo = $.extend( true, {}, widget.options );
|
1935
1935
|
c.widgetOptions = $.extend( true, wo, c.widgetOptions );
|
1936
1936
|
// add widgetOptions to defaults for option validator
|
1937
1937
|
$.extend( true, ts.defaults.widgetOptions, widget.options );
|
@@ -4,7 +4,7 @@
|
|
4
4
|
██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██
|
5
5
|
█████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
|
6
6
|
*/
|
7
|
-
/*! tablesorter (FORK) - updated
|
7
|
+
/*! tablesorter (FORK) - updated 05-03-2017 (v2.28.9)*/
|
8
8
|
/* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
|
9
9
|
(function(factory) {
|
10
10
|
if (typeof define === 'function' && define.amd) {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
/*! Widget: math - updated
|
1
|
+
/*! Widget: math - updated 5/3/2017 (v2.28.9) *//*
|
2
2
|
* Requires tablesorter v2.16+ and jQuery 1.7+
|
3
3
|
* by Rob Garrison
|
4
4
|
*/
|
@@ -606,7 +606,7 @@
|
|
606
606
|
// complete executed after each fucntion
|
607
607
|
math_complete : null, // function($cell, wo, result, value, arry){ return result; },
|
608
608
|
// math_completed called after all math calculations have completed
|
609
|
-
|
609
|
+
math_completed: function( config ) {},
|
610
610
|
// order of calculation; 'all' is last
|
611
611
|
math_priority : [ 'row', 'above', 'below', 'col' ],
|
612
612
|
// template for or just prepend the mask prefix & suffix with this HTML
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-tablesorter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.23.
|
4
|
+
version: 1.23.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jun Lin
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-05-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|