jquery-tablesorter 1.26.0 → 1.26.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f99874ff343b38a13e5ac0be4fd890e6b85adf676de40a620406a49fa38f4cd4
4
- data.tar.gz: d5de1937947ff8257c06370d173062291eb40e600f9a76f82f3e83dc5d6466ec
3
+ metadata.gz: 183fd401be8bba2c7f7831a622f3fc7c318b76558c0fd085b56f568e0d91de88
4
+ data.tar.gz: '081e387b3fbc8d655af2e63d67c8921b46127d5ca2a0026600e9b902af2cacda'
5
5
  SHA512:
6
- metadata.gz: 787673dd09f9c8233b8804e1c639a50c8e1f3da88a7c6bbbc7b90396d86bacf6c5cf44540d9ebb41a9d31acbfb7ae520617f48a63cb241ca8ca2a17e5c047d6a
7
- data.tar.gz: 5c5e43a2a5592ad422149ed180aa04a243f25ea77063adc1eddb43571a969107cada4af9127b863702514857ebac9496b37548a3e73b86f70fd3554cdc64190d
6
+ metadata.gz: '08115dd203ac1794bdeee26bf859857fea3e5b8cd3943557352b957d5a212312ba22a7593338c0179a02dd35685ef8d3acff69c175b020f1f6bff49040a34679'
7
+ data.tar.gz: 64ad24510635554f9e7ea5356afa9d1beee2a10625f712551046b9716adc9e879b908e7250561ca0f29fe6ed3394178b0fb8211a6ef7c304a709d5940289cf02
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.31.0 (2018-08-27) [documentation]
7
+ Current tablesorter version: 2.31.1 (2018-11-20) [documentation]
8
8
 
9
9
  Any issue associated with the js/css files, please report to [Mottie's fork].
10
10
 
@@ -1,7 +1,7 @@
1
1
  module JqueryTablesorter
2
2
  MAJOR = 1
3
3
  MINOR = 26
4
- TINY = 0
4
+ TINY = 1
5
5
 
6
6
  VERSION = [MAJOR, MINOR, TINY].compact.join('.')
7
7
  end
@@ -4,10 +4,10 @@
4
4
  ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██
5
5
  █████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
6
6
  */
7
- /*! tablesorter (FORK) - updated 2018-08-27 (v2.31.0)*/
7
+ /*! tablesorter (FORK) - updated 2018-11-20 (v2.31.1)*/
8
8
  /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
9
9
  (function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery) {
10
- /*! TableSorter (FORK) v2.31.0 *//*
10
+ /*! TableSorter (FORK) v2.31.1 *//*
11
11
  * Client-side table sorting with ease!
12
12
  * @requires jQuery v1.2.6+
13
13
  *
@@ -31,7 +31,7 @@
31
31
  'use strict';
32
32
  var ts = $.tablesorter = {
33
33
 
34
- version : '2.31.0',
34
+ version : '2.31.1',
35
35
 
36
36
  parsers : [],
37
37
  widgets : [],
@@ -328,6 +328,8 @@
328
328
  ts.applyWidget( table, true );
329
329
  // if user has supplied a sort list to constructor
330
330
  if ( c.sortList.length > 0 ) {
331
+ // save sortList before any sortAppend is added
332
+ c.last.sortList = c.sortList;
331
333
  ts.sortOn( c, c.sortList, {}, !c.initWidgets );
332
334
  } else {
333
335
  ts.setHeadersCss( c );
@@ -1,4 +1,4 @@
1
- /*! TableSorter (FORK) v2.31.0 *//*
1
+ /*! TableSorter (FORK) v2.31.1 *//*
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.31.0',
25
+ version : '2.31.1',
26
26
 
27
27
  parsers : [],
28
28
  widgets : [],
@@ -319,6 +319,8 @@
319
319
  ts.applyWidget( table, true );
320
320
  // if user has supplied a sort list to constructor
321
321
  if ( c.sortList.length > 0 ) {
322
+ // save sortList before any sortAppend is added
323
+ c.last.sortList = c.sortList;
322
324
  ts.sortOn( c, c.sortList, {}, !c.initWidgets );
323
325
  } else {
324
326
  ts.setHeadersCss( c );
@@ -4,7 +4,7 @@
4
4
  ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██
5
5
  █████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀
6
6
  */
7
- /*! tablesorter (FORK) - updated 2018-08-27 (v2.31.0)*/
7
+ /*! tablesorter (FORK) - updated 2018-11-20 (v2.31.1)*/
8
8
  /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */
9
9
  (function(factory){if (typeof define === 'function' && define.amd){define(['jquery'], factory);} else if (typeof module === 'object' && typeof module.exports === 'object'){module.exports = factory(require('jquery'));} else {factory(jQuery);}}(function(jQuery) {
10
10
  /*! Widget: storage - updated 2018-03-18 (v2.30.0) */
@@ -1,4 +1,4 @@
1
- /*! Widget: math - updated 5/3/2017 (v2.28.9) *//*
1
+ /*! Widget: math - updated 11/20/2018 (v2.31.1) *//*
2
2
  * Requires tablesorter v2.16+ and jQuery 1.7+
3
3
  * by Rob Garrison
4
4
  */
@@ -28,10 +28,14 @@
28
28
  events : ( 'tablesorter-initialized update updateAll updateRows addRows updateCell filterReset ' )
29
29
  .split(' ').join('.tsmath '),
30
30
 
31
- processText : function( c, $cell ) {
31
+ processText : function( c, $cell ) {
32
32
  var tmp,
33
+ wo = c.widgetOptions,
33
34
  txt = ts.getElementText( c, $cell, math.getCellIndex( $cell ) ),
34
35
  prefix = c.widgetOptions.math_prefix;
36
+ if (wo.math_textAttr) {
37
+ txt = $cell.attr(wo.math_textAttr) || txt;
38
+ }
35
39
  if ( /</.test( prefix ) ) {
36
40
  // prefix contains HTML; remove it & any text before using formatFloat
37
41
  tmp = $( '<div>' + prefix + '</div>' ).text()
@@ -612,6 +616,8 @@
612
616
  // e.g. '<span class="red">{content}</span>'
613
617
  math_prefix : '',
614
618
  math_suffix : '',
619
+ // cell attribute containing the math value to use
620
+ math_textAttr : '',
615
621
  // no matching math elements found (text added to cell)
616
622
  math_none : 'N/A',
617
623
  math_event : 'recalculate',
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.26.0
4
+ version: 1.26.1
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: 2018-09-03 00:00:00.000000000 Z
12
+ date: 2018-11-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: railties