diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-09 12:41:57 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-09 12:41:57 +0100 |
commit | 40a7446e3e1d52fa015ac9f2ce45b0c2b8df520f (patch) | |
tree | 6b068400f924c1bc2595932f65fc1970d7f0fc35 /view/js | |
parent | fc96cd371042a92ed180635b91924413392d3972 (diff) | |
download | volse-hubzilla-40a7446e3e1d52fa015ac9f2ce45b0c2b8df520f.tar.gz volse-hubzilla-40a7446e3e1d52fa015ac9f2ce45b0c2b8df520f.tar.bz2 volse-hubzilla-40a7446e3e1d52fa015ac9f2ce45b0c2b8df520f.zip |
get the path infos from pathname instead of seperate data attribute
Diffstat (limited to 'view/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 4cc10bb49..ffea1b75c 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,notifyType == 'pubs' ? 'undefined' : this.b64mid); + html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); $("#navbar-" + notifyType + "-menu").append(html); - html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,notifyType == 'pubs' ? 'undefined' : this.b64mid); + html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); $("#nav-" + notifyType + "-menu").append(html); }); |