1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-27 03:57:21 +00:00

Merge pull request #407 from Skeeve/regexp_filter

fixed an awful typo in the regexp
This commit is contained in:
Jeremy Ruston 2014-02-12 21:38:54 +00:00
commit 523eae83ff

View File

@ -62,7 +62,7 @@ function parseFilterOperation(operators,filterString,p) {
nextBracketPos = filterString.indexOf(']',p);
break;
case '/': // regexp brackets
var rex = /^((?:[^\\\/]*|\\.))*\/(?:\(([mygi]+)\))?/g,
var rex = /^((?:[^\\\/]*|\\.)*)\/(?:\(([mygi]+)\))?/g,
rexMatch = rex.exec(filterString.substring(p));
if(rexMatch) {
operator.regexp = new RegExp(rexMatch[1], rexMatch[2]);