diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-12 16:07:04 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-12 16:07:04 -0800 |
commit | 59caf141d1e271ee4a6e7ab8b66f4070835dde95 (patch) | |
tree | 44056bdac329f6356fa75ed3566c88568677d89f /view/tpl/notifications_widget.tpl | |
parent | 71a30cd9a5f5c749e3b76e961876afbd0afa87f9 (diff) | |
parent | 6ea7ef43e0a0a99f81986c8e1fe5955800bfa496 (diff) | |
download | volse-hubzilla-59caf141d1e271ee4a6e7ab8b66f4070835dde95.tar.gz volse-hubzilla-59caf141d1e271ee4a6e7ab8b66f4070835dde95.tar.bz2 volse-hubzilla-59caf141d1e271ee4a6e7ab8b66f4070835dde95.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/tpl/notifications_widget.tpl')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 1e752c313..0ece84891 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -29,16 +29,16 @@ {{if $module == 'display'}} <script> $(document).on('click', '.notification', function(e) { - var mid = $(this)[0].pathname.substr(9); + var b64mid = $(this).data('b64mid'); var path = $(this)[0].pathname.substr(1,7); - if(path === 'display' && mid) { + if(path === 'display' && b64mid) { e.preventDefault(); e.stopPropagation(); $('.thread-wrapper').remove(); $(this).fadeOut(); - bParam_mid = mid; + bParam_mid = b64mid; mode = 'replace'; page_load = true; liveUpdate(); @@ -54,7 +54,7 @@ <div id="notifications_wrapper"> <div id="notifications" class="navbar-nav" data-children=".nav-item"> <div id="nav-notifications-template" rel="template"> - <a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}"> + <a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}" data-b64mid="{6}"> <img class="menu-img-3" data-src="{1}"> <span class="contactname">{2}</span> <span class="dropdown-sub-text">{3}<br>{4}</span> |