diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-18 22:16:06 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-18 22:16:06 +0100 |
commit | fbc57fa8e36e468abe81e4f3d72b3115cbdd794c (patch) | |
tree | 05e3924cfda2e18ae97f27304f1af1f0caff988d /view/js/main.js | |
parent | 6b6c2ccfa391d138db925b2c3f92a469c587c907 (diff) | |
download | volse-hubzilla-fbc57fa8e36e468abe81e4f3d72b3115cbdd794c.tar.gz volse-hubzilla-fbc57fa8e36e468abe81e4f3d72b3115cbdd794c.tar.bz2 volse-hubzilla-fbc57fa8e36e468abe81e4f3d72b3115cbdd794c.zip |
some more work on mod hq
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/main.js b/view/js/main.js index e231dac60..026036300 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -959,9 +959,9 @@ function notify_popup_loader(notifyType) { $("." + notifyType + "-update").html(data.notify.length); $(data.notify).each(function() { - html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid); + html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id); $("#navbar-" + notifyType + "-menu").append(html); - html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid); + html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id); $("#nav-" + notifyType + "-menu").append(html); }); |