diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-08 10:12:20 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-08 10:12:20 +0200 |
commit | dbc5ecfe572b0dc11bab277dcbe24541cdd4e858 (patch) | |
tree | 763475aeb95934ec54b3ba2af8d4604dba086ad1 /js/main.js | |
parent | 2f93a4d70dbdc1c8affa05dc7a09638c542e2fa3 (diff) | |
download | volse-hubzilla-dbc5ecfe572b0dc11bab277dcbe24541cdd4e858.tar.gz volse-hubzilla-dbc5ecfe572b0dc11bab277dcbe24541cdd4e858.tar.bz2 volse-hubzilla-dbc5ecfe572b0dc11bab277dcbe24541cdd4e858.zip |
light notifications menu icon on new notifs
Diffstat (limited to 'js/main.js')
-rw-r--r-- | js/main.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js index 328b1f231..452cb8451 100644 --- a/js/main.js +++ b/js/main.js @@ -97,9 +97,10 @@ var eNotif = $(data).find('notif') notif = eNotif.attr('count'); if (notif>0){ + $("#nav-notifications-linkmenu").addClass("on"); nnm = $("#nav-notifications-menu"); nnm.html(""); - nnm.attr('popup','true'); + //nnm.attr('popup','true'); eNotif.children("note").each(function(){ e = $(this); text = e.text().format("<span class='contactname'>"+e.attr('name')+"</span>"); @@ -107,6 +108,7 @@ nnm.append(html); }); } else { + $("#nav-notifications-linkmenu").removeClass("on"); $("#nav-notifications-menu").html(notifications_empty); } if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') } |