From 631a8278d34da70ff312b0dcc11f8e486a4d4597 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 3 Feb 2017 11:21:06 +0100 Subject: do not hide button - just gray it out --- view/js/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view/js') diff --git a/view/js/main.js b/view/js/main.js index 11dd1b817..db37925e5 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -369,10 +369,10 @@ function NavUpdate() { updateCountsOnly = false; if(data.network || data.home || data.intros || data.mail || data.all_events || data.notify) { - $('#notifications-btn').show(); + $('#notifications-btn').css('color', 'white').prop('disabled', false); } else { - $('#notifications-btn').hide(); + $('#notifications-btn').css('color', 'grey').prop('disabled', true); $('#navbar-collapse-1').removeClass('in'); } -- cgit v1.2.3