exact matches in filter widget now allows using == (acts the same as a single equal)

This commit is contained in:
Mottie 2013-09-29 14:41:45 -05:00
parent c1d102c698
commit ddff43ee4c

View File

@ -353,7 +353,7 @@ ts.addWidget({
"child" : /tablesorter-childRow/, // child row class name; this gets updated in the script
"filtered" : /filtered/, // filtered (hidden) row class name; updated in the script
"type" : /undefined|number/, // check type
"exact" : /(^[\"|\'|=])|([\"|\'|=]$)/g, // exact match
"exact" : /(^[\"|\'|=]+)|([\"|\'|=]+$)/g, // exact match (allow '==')
"nondigit" : /[^\w,. \-()]/g, // replace non-digits (from digit & currency parser)
"operators" : /[<>=]/g // replace operators
}