fix escape in regexp

This commit is contained in:
Denis Ryabov 2014-03-14 18:04:15 +04:00
parent 15036dbbad
commit b9896df6d4

View File

@ -83,8 +83,8 @@
if (pattern[0] === ';') {
text = text
.replace(new RegExp("(^|\W)" + $t.quote(pattern), "g"), "\\1" + rep)
.replace(new RegExp("(^|\W)" + $t.quote(encPattent), "g"), "\\1" + rep);
.replace(new RegExp("(^|\\W)" + $t.quote(pattern), "g"), "\\1" + rep)
.replace(new RegExp("(^|\\W)" + $t.quote(encPattent), "g"), "\\1" + rep);
} else {
text = text
.replace(new RegExp($t.quote(pattern), "g"), rep)