diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-30 19:03:14 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-30 19:03:14 -0800 |
commit | c6acb6191ca558fce121e7df26a8aba88beac2d9 (patch) | |
tree | d1f4abe408046aff8b76c0b81d16e313a3fe90fd /view/js/main.js | |
parent | 6cade7d935a489349c56165139796bd2f9cf9be6 (diff) | |
download | volse-hubzilla-c6acb6191ca558fce121e7df26a8aba88beac2d9.tar.gz volse-hubzilla-c6acb6191ca558fce121e7df26a8aba88beac2d9.tar.bz2 volse-hubzilla-c6acb6191ca558fce121e7df26a8aba88beac2d9.zip |
allow notification filtering by name or addr
Diffstat (limited to 'view/js/main.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); }); |