Merge pull request #574 from zotlabs/static_update

feature: static page update as opposed to live update of conversation…
This commit is contained in:
git-marijus
2016-11-02 16:12:05 +01:00
committed by GitHub
8 changed files with 27 additions and 0 deletions

View File

@@ -754,6 +754,13 @@ function liveUpdate() {
update_mode = 'append';
}
else {
if(bParam_static) {
in_progress = false;
if(timer) clearTimeout(timer);
timer = setTimeout(NavUpdate,10000);
return;
}
update_mode = 'update';
var orgHeight = $("#region_2").height();
}