Index: standard/project/web/src/main/webapp/WEB-INF/tags/jstree.tag =================================================================== diff -u -r23c39253ef7738ee487335bf9df57ad6da75b873 -r947b29ecf70e51b0a2ffa14e8b95d9721e071a6f --- standard/project/web/src/main/webapp/WEB-INF/tags/jstree.tag (.../jstree.tag) (revision 23c39253ef7738ee487335bf9df57ad6da75b873) +++ standard/project/web/src/main/webapp/WEB-INF/tags/jstree.tag (.../jstree.tag) (revision 947b29ecf70e51b0a2ffa14e8b95d9721e071a6f) @@ -249,7 +249,7 @@ } else { $.jstree.rollback(data.rlbk); } - if(Chat){ + if(document.getElementById("Chat") != null){ Chat.sendMessage("노드를 추가했습니다. 추가된 노드의 아이디는 " + r.id , function(data) { console.log(data); }); @@ -268,7 +268,7 @@ }, success: function(r) { jNotify('Notification : Remove Node, Complete !'); - if(Chat){ + if(document.getElementById("Chat") != null){ Chat.sendMessage("노드를 삭제했습니다. 삭제된 노드의 아이디는 " + r.c_id , function(data) { console.log(data); }); @@ -288,7 +288,7 @@ $.jstree.rollback(data.rlbk); } jSuccess('Rename Node Complete'); - if(Chat){ + if(document.getElementById("Chat") != null){{ Chat.sendMessage("노드를 변경했습니다. 변경된 노드의 아이디는 " + r.c_id , function(data) { console.log(data); }); @@ -303,7 +303,7 @@ "c_type": data.rslt.obj.attr("rel") }, function(r) { jSuccess('Node Type Change'); - if(Chat){ + if(document.getElementById("Chat") != null){ Chat.sendMessage("노드를 변경했습니다. 변경된 노드의 아이디는 " + r.c_id , function(data) { console.log(data); }); @@ -335,7 +335,7 @@ } } jNotify('Notification : Move Node Complete !'); - if(Chat){ + if(document.getElementById("Chat") != null){ Chat.sendMessage("노드가 이동되었습니다. 이동된 노드의 아이디는 " + r.c_id , function(data) { console.log(data); });