added comma between names

This commit is contained in:
Jeena Paradies 2013-01-27 12:10:40 +01:00
parent 620d44fb03
commit 31ad1cbcaf
3 changed files with 14 additions and 22 deletions

View file

@ -665,12 +665,21 @@ function(jQuery, Paths, URI, HostApp, Cache) {
+ "</a>"
);
// adding show profile on click
node.innerHTML = new_text;
$(node).find("a.name").click(function(e) {
HostApp.showProfileForEntity(e.target.title);
return false;
});
// adding comma between names when there is only
// a space in between.
var names = $(node).find("a.name");
names.each(function(i) {
if(this.nextSibling && $(this.nextSibling.nextSibling).hasClass("name") && this.nextSibling.nodeValue == " " ) {
$(this).after(",")
}
});
}
}