diff options
author | friendica <info@friendica.com> | 2013-10-20 21:02:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-10-20 21:02:24 -0700 |
commit | b4efbfbce73336829aee75843cf1d18fdd7c031f (patch) | |
tree | e1b2d5065c7eddeb505c120f02b74219d6ef10d7 /js | |
parent | c48da79adf648370beeeb0bab18f89963babebaa (diff) | |
download | volse-hubzilla-b4efbfbce73336829aee75843cf1d18fdd7c031f.tar.gz volse-hubzilla-b4efbfbce73336829aee75843cf1d18fdd7c031f.tar.bz2 volse-hubzilla-b4efbfbce73336829aee75843cf1d18fdd7c031f.zip |
partial fix for issue #123 - this doesn't actually fix the reported problem, but does instantly reset the notification count when you click 'mark all xyz notifications seen'
Diffstat (limited to 'js')
-rw-r--r-- | js/main.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/main.js b/js/main.js index 432b02bee..a19f9feb6 100644 --- a/js/main.js +++ b/js/main.js @@ -98,6 +98,7 @@ function markRead(notifType) { $.get('ping?f=&markRead='+notifType); if(timer) clearTimeout(timer); + $('#' + notifType + '-update').html(''); timer = setTimeout(NavUpdate,2000); } |