Commit 7d27facd by Kim Eunchul

#40365 【TECSS(Biz) webviewer 1.9】一覧画面で検索時にエラーを起こすキーワードがある

parent dd038242
......@@ -1044,7 +1044,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
}
if ($('#txtSearchWs').val() != '' && $('#txtSearchWs').val() != '\"\"') {
console.log($('#txtSearchWs').val());
try{
//seperate string
......
......@@ -736,6 +736,7 @@ CONTENTVIEW.searchHandle = function() {
}
if ($('#txtSearch').val() != '' && $('#txtSearch').val() != '\"\"') {
console.log($('#txtSearch').val());
var dataStored = CONTENTVIEW_GENERAL.arrThumbnailsLoaded;
var contentPage = CONTENTVIEW_GENERAL.dataWebContentPage.pages;
var sPageNo = [];
......
......@@ -270,6 +270,7 @@ HEADER.searchHeaderButtonFunction = function(){
return;
}
if ($('#searchbox-key').val() != '' && $('#searchbox-key').val() != '\"\"') {
console.log($('#searchbox-key').val());
try{
//seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi;
......
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