diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-08 15:10:28 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-08 15:10:28 -0700 |
commit | 09009d4b32d5014d77de941dba695fe2bc577616 (patch) | |
tree | 471a185624cafd29e11482a9ca0ae98da641bfc4 /view/js/main.js | |
parent | 5cc6c6c1e97743b208b90f2a05b23196df787f36 (diff) | |
parent | ec173e7eb2e0b4a0768606365f6463009900f0ea (diff) | |
download | volse-hubzilla-09009d4b32d5014d77de941dba695fe2bc577616.tar.gz volse-hubzilla-09009d4b32d5014d77de941dba695fe2bc577616.tar.bz2 volse-hubzilla-09009d4b32d5014d77de941dba695fe2bc577616.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_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 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); |