diff options
author | Mario <mario@mariovavti.com> | 2021-06-24 19:31:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-06-24 19:31:19 +0000 |
commit | 167db22e15c72c32cd67ce1a2b242dc4527e0b64 (patch) | |
tree | 5838e2d84860366a9fdb6a68dc92aeb692306c60 /view/tpl/notifications_widget.tpl | |
parent | 108777251e4d5f61c9fa344f7a19c31a1b12fb44 (diff) | |
download | volse-hubzilla-167db22e15c72c32cd67ce1a2b242dc4527e0b64.tar.gz volse-hubzilla-167db22e15c72c32cd67ce1a2b242dc4527e0b64.tar.bz2 volse-hubzilla-167db22e15c72c32cd67ce1a2b242dc4527e0b64.zip |
slightly refactor for desktop notifications and fix minor issues
Diffstat (limited to 'view/tpl/notifications_widget.tpl')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 263318aad..5cbfcc214 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -354,8 +354,8 @@ if($('#nav-' + notifyType + '-menu .notification[data-b64mid=\'' + this.b64mid + '\']').length) return true; - if(!replace && !followup && this.thread_top && notifyType == 'network') { - sse_dektop_notification($('<p>' + this.message + '</p>').text(), this.name); + if(!replace && !followup && (this.thread_top && notifyType === 'network')) { + $(document).trigger('hz:handleNetworkNotificationsItems', this); } 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, encodeURIComponent(this.mids), this.body); @@ -471,19 +471,6 @@ sse_handleNotifications(obj, false, false); }); } - - function sse_dektop_notification(body, title) { - let options = { - body: body, - icon: '/images/hz-64.png', - silent: false - } - let n = new Notification(title, options); - n.onclick = function (event) { - setTimeout(n.close.bind(n), 300); - } - } - </script> <div id="notifications_wrapper" class="mb-4"> |