mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
one more attempt
This commit is contained in:
parent
35b5850af7
commit
9b6afc2a38
1 changed files with 2 additions and 2 deletions
|
@ -114,7 +114,7 @@
|
|||
|
||||
var eNotif = $(data).find('notif')
|
||||
notif = eNotif.attr('count');
|
||||
if (notif>0){
|
||||
if (notif>=0){
|
||||
$("#nav-notifications-linkmenu").addClass("on");
|
||||
nnm = $("#nav-notifications-menu");
|
||||
|
||||
|
@ -132,7 +132,7 @@
|
|||
// $("#nav-notifications-linkmenu").removeClass("on");
|
||||
// $("#nav-notifications-menu").html(notifications_empty);
|
||||
}
|
||||
if(notif == 0) { /* notif = ''; $('#notify-update').removeClass('show') */ } else { $('#notify-update').addClass('show') }
|
||||
if(notif == 0) { notif = ''; $('#notify-update').removeClass('show') } else { $('#notify-update').addClass('show') }
|
||||
$('#notify-update').html(notif);
|
||||
|
||||
var eSysmsg = $(data).find('sysmsgs');
|
||||
|
|
Loading…
Reference in a new issue