diff options
author | zotlabs <mike@macgirvin.com> | 2018-12-01 03:03:14 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-12-02 10:17:45 +0100 |
commit | 4b4cc0489729e061f18a825e0e0be3fa0a9d8353 (patch) | |
tree | 70522484f1692cbeae39731b4497207c51752515 /view/js | |
parent | 4bf3d4d87ac23af339f6418055211037b020cf1d (diff) | |
download | volse-hubzilla-4b4cc0489729e061f18a825e0e0be3fa0a9d8353.tar.gz volse-hubzilla-4b4cc0489729e061f18a825e0e0be3fa0a9d8353.tar.bz2 volse-hubzilla-4b4cc0489729e061f18a825e0e0be3fa0a9d8353.zip |
allow notification filtering by name or addr
(cherry picked from commit c6acb6191ca558fce121e7df26a8aba88beac2d9)
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index 085bc8d0d..f4bfd413b 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -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); }); |