diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-02-03 11:21:06 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-02-03 11:21:06 +0100 |
commit | 631a8278d34da70ff312b0dcc11f8e486a4d4597 (patch) | |
tree | 20fb5405c3ebbdb1edf8423c4e8d8724a3aee391 /view/js/main.js | |
parent | a5c1685ea0323de974d4a1469f122283e278e91a (diff) | |
download | volse-hubzilla-631a8278d34da70ff312b0dcc11f8e486a4d4597.tar.gz volse-hubzilla-631a8278d34da70ff312b0dcc11f8e486a4d4597.tar.bz2 volse-hubzilla-631a8278d34da70ff312b0dcc11f8e486a4d4597.zip |
do not hide button - just gray it out
Diffstat (limited to 'view/js/main.js')
-rw-r--r-- | view/js/main.js | 4 |
1 files changed, 2 insertions, 2 deletions
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'); } |