now possible to see who created a event/task in a delegated calendar

This commit is contained in:
Ludovic Marcotte
2013-06-19 10:23:47 -04:00
parent 6b25f08943
commit 5304461e4c
13 changed files with 112 additions and 35 deletions
+8 -1
View File
@@ -760,7 +760,14 @@ function onViewEventCallback(http) {
} else
para.hide();
para = $(paras[3]);
para = $(paras[3]);
if (data["created_by"].length) {
para.down("SPAN", 1).update(data["created_by"]);
para.show();
} else
para.hide();
para = $(paras[4]);
if (data["description"].length) {
para.update(data["description"].replace(/\r?\n/g, "<BR/>"));
para.show();