Skip to content

Commit c1a1440

Browse files
Fix regex for class selector
1 parent 7539892 commit c1a1440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jquery.table-shrinker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
let r = $(this).after('<tr class="blank-row"></tr>').after('<tr class="shrink-wrapper"><td colspan="99"></td></tr>')
4545
$ths.each(function (hId) {
4646
if($(this)[0].className.match('shrinkable')) r.find('td').eq(hId).addClass('shrinkable')
47-
var re = new RegExp('(?:shrink-)(..)[ ]?');
47+
var re = new RegExp('(?:shrink-)([a-z]*)[^ ]?');
4848
let result = $(this)[0].className.match(re);
4949
if (result) {
5050
if(rId == 0) {_suffixes = _suffixes + ' ' + result[1]}

0 commit comments

Comments
 (0)