|
|
@@ -143,6 +143,7 @@
|
|
|
var trendKeywordList = [[${trendKeywordList.trendList}]];
|
|
|
|
|
|
var fnClose = function() {
|
|
|
+ $("body").removeClass("lock");
|
|
|
$("#layer_search").removeClass('active');
|
|
|
}
|
|
|
|
|
|
@@ -221,13 +222,15 @@
|
|
|
if (trendKeywordList.length > 0) {
|
|
|
$("#popularKeyArea").html('');
|
|
|
trendKeywordList.forEach(function (item, idx) {
|
|
|
- var tag = '';
|
|
|
- if (idx < 10) {
|
|
|
- tag += '<li>';
|
|
|
- tag += ' <a href="javascript:void(0);" onclick="fnSearchKeyword(\''+item.keyword+'\');">'+ item.keyword +'</a>';
|
|
|
- tag += '</li>';
|
|
|
+ if(item.keyword.indexOf("테스트") < 0){
|
|
|
+ var tag = '';
|
|
|
+ if (idx < 10) {
|
|
|
+ tag += '<li>';
|
|
|
+ tag += ' <a href="javascript:void(0);" onclick="fnSearchKeyword(\''+item.keyword+'\');">'+ item.keyword +'</a>';
|
|
|
+ tag += '</li>';
|
|
|
+ }
|
|
|
+ $("#popularKeyArea").append(tag);
|
|
|
}
|
|
|
- $("#popularKeyArea").append(tag);
|
|
|
});
|
|
|
}else{
|
|
|
$("#popularKeyArea").html('');
|