Commit 4d15420e by Kim Eunchul

#40821 【TECSS Web 1.9.2.6】「or」「(」「半角スペース」で検索した時の結果が統一されていない

parent f2a406e1
......@@ -817,7 +817,7 @@ CONTENTVIEW.searchHandle = function() {
var match = myRegexp.exec(textReg);
if (match != null)
{
myArray.push(match[1] ? match[1].replace(/ \( /g,"\(").replace(/ \) /g,"\)") : match[0].replace(/ \( /g,"\(").replace(/ \) /g,"\)"));
myArray.push(match[1] ? match[1].replace(/ \( /g,"[\(]").replace(/ \) /g,"[\)]") : match[0].replace(/ \( /g,"[\(]").replace(/ \) /g,"[\)]"));
}
} while (match != null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment