aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
Diffstat (limited to 'view/js')
-rw-r--r--view/js/main.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js
index 4a7db0fdb..f6bc22e34 100644
--- a/view/js/main.js
+++ b/view/js/main.js
@@ -666,8 +666,10 @@ function liveUpdate() {
else
update_mode = 'append';
}
- else
+ else {
update_mode = 'update';
+ var orgHeight = $("#region_2").height();
+ }
$.get(update_url, function(data) {
page_load = false;
@@ -676,6 +678,10 @@ function liveUpdate() {
$("#page-spinner").spin(false);
$("#profile-jot-text-loading").spin(false);
+ if(update_mode === 'update') {
+ $(window).scrollTop($(window).scrollTop() + $("#region_2").height() - orgHeight);
+ }
+
in_progress = false;
// FIXME - the following lines were added so that almost