diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-09 18:36:40 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-09 18:36:40 -0800 |
commit | 71a30cd9a5f5c749e3b76e961876afbd0afa87f9 (patch) | |
tree | 81e1a5fc1d52839f8735acbba23064027fece2ac /view/js/main.js | |
parent | ef27a1ce6c3cdb6f08584e76fa0c012377cadc49 (diff) | |
parent | 766a7fb1b46a506e92d62ed0b76e0e0e3e6958a5 (diff) | |
download | volse-hubzilla-71a30cd9a5f5c749e3b76e961876afbd0afa87f9.tar.gz volse-hubzilla-71a30cd9a5f5c749e3b76e961876afbd0afa87f9.tar.bz2 volse-hubzilla-71a30cd9a5f5c749e3b76e961876afbd0afa87f9.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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index c3873d823..ffea1b75c 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -750,6 +750,7 @@ function collapseHeight() { } function liveUpdate() { + if(typeof profile_uid === 'undefined') profile_uid = false; /* Should probably be unified with channelId defined in head.tpl */ if((src === null) || (stopped) || (! profile_uid)) { $('.like-rotator').hide(); return; } if(($('.comment-edit-text.expanded').length) || (in_progress)) { @@ -791,7 +792,6 @@ function liveUpdate() { var orgHeight = $("#region_2").height(); } - var dstart = new Date(); console.log('LOADING data...'); $.get(update_url, function(data) { |