fix #2185 게시판 카테고리 및 메뉴 관리가 동작하지 않을 수 있는 문제 고침

This commit is contained in:
bnu 2017-12-04 12:28:00 +09:00 committed by Kijin Sung
parent 0b44e47d65
commit 1943289bb8
3 changed files with 33 additions and 24 deletions

View file

@ -1005,13 +1005,13 @@ function setJSTreeOpenIds(){
}
function issetJSTreeOpenIds(id) {
var jstree_open_srls = getCookie("__xe_admin_jstree_open_srls").split(",");
for (var i=0; i< jstree_open_srls.length; i++) {
if(jstree_open_srls[i] == id) {
return true;
}
var jstree_open_srls = getCookie('__xe_admin_jstree_open_srls') || '';
if(!jstree_open_srls) {
return false;
}
return false;
return (jstree_open_srls.split(',').indexOf(id) === -1) ? false : true;
}
var htNodeInfo = {};