diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-26 14:40:20 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-03-26 14:40:20 -0700 |
commit | 5cbf60320355845e2abdec0422055d3fe321e84e (patch) | |
tree | 76f88c1ef52a9f05582e0b3fac4267ab3683db73 /view/js/main.js | |
parent | dc59817a9d683d9a262397f3b4d6909e44779847 (diff) | |
parent | c327b00efa7807374776a341a7cec4023f61497b (diff) | |
download | volse-hubzilla-5cbf60320355845e2abdec0422055d3fe321e84e.tar.gz volse-hubzilla-5cbf60320355845e2abdec0422055d3fe321e84e.tar.bz2 volse-hubzilla-5cbf60320355845e2abdec0422055d3fe321e84e.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
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 150f517a9..38b9754a1 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').removeClass('text-muted').addClass('text-white'); + $('#notifications-btn').css('opacity', 1); } else { - $('#notifications-btn').removeClass('text-white').addClass('text-muted'); + $('#notifications-btn').css('opacity', 0.5); $('#navbar-collapse-1').removeClass('in'); } |