diff options
author | alecpl <alec@alec.pl> | 2010-10-27 10:16:28 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2010-10-27 10:16:28 +0000 |
commit | d808ba6e1de7f48f8e062bb1366d48c6d17aa718 (patch) | |
tree | 5c33558d41739d63d0c0e7ee6d23a6e69b03b1c3 /program | |
parent | 5f27a762afd4d664c311be9d75f84143fd2f6488 (diff) |
- Hide loading message when preview pane is being "emptied" (#1487077)
Diffstat (limited to 'program')
-rw-r--r-- | program/js/app.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index 6b4be6c76..870459dc4 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1191,8 +1191,7 @@ function rcube_webmail() clearTimeout(this.preview_read_timer); // save folderlist and folders location/sizes for droptarget calculation in drag_move() - if (this.gui_objects.folderlist && model) - { + if (this.gui_objects.folderlist && model) { this.initialBodyScrollTop = bw.ie ? 0 : window.pageYOffset; this.initialListScrollTop = this.gui_objects.folderlist.parentNode.scrollTop; @@ -1858,7 +1857,7 @@ function rcube_webmail() } if (!show && this.busy) - this.set_busy(false); + this.set_busy(false, null, this.env.frame_lock); }; // list a specific page |