allow notification filtering by name or addr

(cherry picked from commit c6acb6191c)
This commit is contained in:
zotlabs
2018-12-01 03:03:14 +00:00
committed by Mario
parent 4bf3d4d87a
commit 4b4cc04897
4 changed files with 16 additions and 8 deletions

View File

@@ -544,7 +544,7 @@ function handleNotificationsItems(notifyType, data) {
notify_menu.html('');
$(data).each(function() {
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top,this.unseen,this.private_forum);
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.addr,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top,this.unseen,this.private_forum);
notify_menu.append(html);
});