aboutsummaryrefslogtreecommitdiffstats
path: root/js/main.js
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-10-20 21:02:24 -0700
committerfriendica <info@friendica.com>2013-10-20 21:02:24 -0700
commitb4efbfbce73336829aee75843cf1d18fdd7c031f (patch)
treee1b2d5065c7eddeb505c120f02b74219d6ef10d7 /js/main.js
parentc48da79adf648370beeeb0bab18f89963babebaa (diff)
downloadvolse-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/main.js')
-rw-r--r--js/main.js1
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);
}