Commit 62d58fcc by Kim Eunchul

Merge branch 'contract/ttss/1.0.0_kim-ec' into 'contract/ttss/1.1.0'

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

See merge request abook_web/web-viewer!52
parents 4fe9f2e4 4d15420e
......@@ -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