diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-01-07 19:14:19 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-01-07 19:47:48 +0100 |
commit | fefc78a849ade52927f6ae88a3c1f03501d66930 (patch) | |
tree | 9344ee00f8a30946467d9d149001ea43bd7f36ac /view/js | |
parent | ffe058d48f5a8c4d38c893ece09cdaac8078e9e5 (diff) | |
download | volse-hubzilla-fefc78a849ade52927f6ae88a3c1f03501d66930.tar.gz volse-hubzilla-fefc78a849ade52927f6ae88a3c1f03501d66930.tar.bz2 volse-hubzilla-fefc78a849ade52927f6ae88a3c1f03501d66930.zip |
start with nonactive state for the notifications button and display some text if there are no notifications on small screens only
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js index 11a09b647..a228e6fbc 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -373,10 +373,12 @@ function notificationsUpdate() { if(data.network || data.home || data.intros || data.register || data.mail || data.all_events || data.notify || data.files || data.pubs) { $('.notifications-btn').css('opacity', 1); + $('#no_notifications').hide(); } else { $('.notifications-btn').css('opacity', 0.5); $('#navbar-collapse-1').removeClass('show'); + $('#no_notifications').show(); } if(data.home || data.intros || data.register || data.mail || data.notify || data.files) { |