diff --git a/js/jquery.tablesorter.combined.js b/js/jquery.tablesorter.combined.js index 33a939784..972038ea1 100644 --- a/js/jquery.tablesorter.combined.js +++ b/js/jquery.tablesorter.combined.js @@ -4,7 +4,7 @@ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██▀▀ ▀▀▀██ █████▀ ▀████▀ ██ ██ ▀████▀ ██ ██ ██ ██ ▀████▀ █████▀ ██ ██ █████▀ */ -/*! tablesorter (FORK) - updated 04-07-2017 (v2.28.7)*/ +/*! tablesorter (FORK) - updated 04-08-2017 (v2.28.7)*/ /* Includes widgets ( storage,uitheme,columns,filter,stickyHeaders,resizable,saveSort ) */ (function(factory) { if (typeof define === 'function' && define.amd) { @@ -1346,12 +1346,6 @@ cache[ c.columns ].raw[ icell ] = tmp; tmp = ts.getParsedText( c, cell, icell, tmp ); cache[ icell ] = tmp; // parsed - var tmpRow = cache[c.columns].$row; - if (tmpRow.length == 2) { - // reapply child row - $row = $row.add(tmpRow[1]); - } - cache[ c.columns ].$row = $row; if ( ( c.parsers[ icell ].type || '' ).toLowerCase() === 'numeric' ) { // update column max value (ignore sign) tbcache.colMax[ icell ] = Math.max( Math.abs( tmp ) || 0, tbcache.colMax[ icell ] || 0 ); diff --git a/js/jquery.tablesorter.js b/js/jquery.tablesorter.js index 2527b0726..dddddbe2a 100644 --- a/js/jquery.tablesorter.js +++ b/js/jquery.tablesorter.js @@ -1328,12 +1328,6 @@ cache[ c.columns ].raw[ icell ] = tmp; tmp = ts.getParsedText( c, cell, icell, tmp ); cache[ icell ] = tmp; // parsed - var tmpRow = cache[c.columns].$row; - if (tmpRow.length == 2) { - // reapply child row - $row = $row.add(tmpRow[1]); - } - cache[ c.columns ].$row = $row; if ( ( c.parsers[ icell ].type || '' ).toLowerCase() === 'numeric' ) { // update column max value (ignore sign) tbcache.colMax[ icell ] = Math.max( Math.abs( tmp ) || 0, tbcache.colMax[ icell ] || 0 );