diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-17 21:24:07 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-17 21:24:07 -0700 |
commit | 656ec585b22e62b496fe96002ee8ca7f9fd02d64 (patch) | |
tree | a5c49ace5fdc41e9a9ab4ffb065e7d3cc5914f7b /view/js | |
parent | 9497c6c0f7470800a54b0c8f60467f675b32c5ed (diff) | |
parent | 64a49eb54ac93b9fb3ba4f65894c60dba5620048 (diff) | |
download | volse-hubzilla-656ec585b22e62b496fe96002ee8ca7f9fd02d64.tar.gz volse-hubzilla-656ec585b22e62b496fe96002ee8ca7f9fd02d64.tar.bz2 volse-hubzilla-656ec585b22e62b496fe96002ee8ca7f9fd02d64.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/main.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/view/js/main.js b/view/js/main.js index 0aeb4d36d..3455de5c2 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1000,6 +1000,13 @@ function notify_popup_loader(notifyType) { }); } }); + + setTimeout(function() { + if(notify_menu.hasClass('show')) { + console.log('updating ' + notifyType + ' notifications...'); + setTimeout(notify_popup_loader, updateInterval, notifyType); + } + }, 1000); } |