feature: static page update as opposed to live update of conversations on the page. Changes will be queued until the page is reloaded. There may or may not be notifications of pending activity updates depending on your notification preferences. Endless scrolling (append) is still performed either way. This only affects changed and new/unseen items being inserted into the page.

This commit is contained in:
zotlabs
2016-11-01 20:21:39 -07:00
parent fa8cb40af0
commit ca948d66a9
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();
}