diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-08 15:10:44 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-08 15:10:44 -0700 |
commit | 52b1ea10a1ef4ccec67b4248155651626ec24b44 (patch) | |
tree | 4177a3e8de9ed2353bec1ee7e5f470766c12fa39 /view/js | |
parent | 27bc8294aecb847e0e87e61ff0c11cf64d4a9c10 (diff) | |
parent | ec173e7eb2e0b4a0768606365f6463009900f0ea (diff) | |
download | volse-hubzilla-52b1ea10a1ef4ccec67b4248155651626ec24b44.tar.gz volse-hubzilla-52b1ea10a1ef4ccec67b4248155651626ec24b44.tar.bz2 volse-hubzilla-52b1ea10a1ef4ccec67b4248155651626ec24b44.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
Diffstat (limited to 'view/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 b2210ee4c..186cefbd0 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -481,8 +481,8 @@ function NavUpdate() { if(data.home == 0) { data.home = ''; $('.home-update, .home-button').hide(); } else { $('.home-update, .home-button').show(); } $('.home-update').html(data.home); - if(data.intros == 0) { data.intros = ''; $('.intro-update, .intro-button').hide(); } else { $('.intro-update, .intro-button').show(); } - $('.intro-update').html(data.intros); + if(data.intros == 0) { data.intros = ''; $('.intros-update, .intros-button').hide(); } else { $('.intros-update, .intros-button').show(); } + $('.intros-update').html(data.intros); if(data.mail == 0) { data.mail = ''; $('.mail-update, .mail-button').hide(); } else { $('.mail-update, .mail-button').show(); } $('.mail-update').html(data.mail); |