Commit 0a490f3c by Kim Eunchul

#40770 【TECSS Web 1.9.2.6】検索調査依頼

parent af35356b
...@@ -44,7 +44,6 @@ CONTENTVIEW_GETDATA.getPageObjectsByPageIndex = function(contentData, nIndexPage ...@@ -44,7 +44,6 @@ CONTENTVIEW_GETDATA.getPageObjectsByPageIndex = function(contentData, nIndexPage
if (currentPageObjects != undefined) { if (currentPageObjects != undefined) {
for (var nIndex = 0; nIndex < currentPageObjects.length; nIndex++) { for (var nIndex = 0; nIndex < currentPageObjects.length; nIndex++) {
console.log('ミディアム '   + currentPageObjects[nIndex].mediaType + ' ミディアム ' + nIndex);
/*get object page*/ /*get object page*/
if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */ if (currentPageObjects[nIndex].mediaType == 1) {/*media type = 1 */
var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]); var pageObject = CONTENTVIEW_GETDATA.getMediaType1(currentPageObjects[nIndex]);
......
...@@ -270,7 +270,8 @@ HEADER.searchHeaderButtonFunction = function(){ ...@@ -270,7 +270,8 @@ HEADER.searchHeaderButtonFunction = function(){
alert('200字以下のテキストを入力してください'); alert('200字以下のテキストを入力してください');
return; return;
} }
if ($('#searchbox-key').val() != ' ' && $('#searchbox-key').val() != ' ' && $('#searchbox-key').val() != '') {
if ($('#searchbox-key').val() != ' ') {
try{ try{
//seperate string //seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi; 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