Index: standard/project/web/src/main/webapp/WEB-INF/tags/jstree.tag
===================================================================
diff -u -r2285d436110a5f6b3a3643e1c8845b7cce167e1e -r9d33cf7e661034547be16a1e7059485f222e34f7
--- standard/project/web/src/main/webapp/WEB-INF/tags/jstree.tag (.../jstree.tag) (revision 2285d436110a5f6b3a3643e1c8845b7cce167e1e)
+++ standard/project/web/src/main/webapp/WEB-INF/tags/jstree.tag (.../jstree.tag) (revision 9d33cf7e661034547be16a1e7059485f222e34f7)
@@ -249,7 +249,7 @@
} else {
$.jstree.rollback(data.rlbk);
}
- if(document.getElementById("Chat") != null){
+ if (typeof Chat != "undefined"){
Chat.sendMessage("노드를 추가했습니다. 추가된 노드의 아이디는 " + r.id , function(data) {
console.log(data);
});
@@ -268,7 +268,7 @@
},
success: function(r) {
jNotify('Notification : Remove Node, Complete !');
- if(document.getElementById("Chat") != null){
+ if (typeof Chat != "undefined"){
Chat.sendMessage("노드를 삭제했습니다. 삭제된 노드의 아이디는 " + r.c_id , function(data) {
console.log(data);
});
@@ -288,7 +288,7 @@
$.jstree.rollback(data.rlbk);
}
jSuccess('Rename Node Complete');
- if(document.getElementById("Chat") != null){
+ if (typeof Chat != "undefined"){
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(document.getElementById("Chat") != null){
+ if (typeof Chat != "undefined"){
Chat.sendMessage("노드를 변경했습니다. 변경된 노드의 아이디는 " + r.c_id , function(data) {
console.log(data);
});
@@ -335,9 +335,11 @@
}
}
jNotify('Notification : Move Node Complete !');
+ if (typeof Chat != "undefined"){
Chat.sendMessage("노드가 이동되었습니다. 이동된 노드의 아이디는 " + r.c_id , function(data) {
console.log(data);
});
+ }
jstreeDataTableReload();
jsTreeBuild();
}