From ed9e558f2ad47341b4786868c2a74b5c44731e0f Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Sat, 4 Apr 2009 00:03:16 -0600 Subject: [PATCH] Fix background loading of INBOX --- imp/js/src/ViewPort.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/imp/js/src/ViewPort.js b/imp/js/src/ViewPort.js index 661018694..63ba2f38f 100644 --- a/imp/js/src/ViewPort.js +++ b/imp/js/src/ViewPort.js @@ -66,11 +66,12 @@ var ViewPort = Class.create({ // Need to store current buffer to save current offset this.views.set(this.view, { buffer: this._getBuffer(), offset: this.currentOffset() }); } - curr = this.views.get(view); } else { init = true; } + curr = this.views.get(view); + if (background) { opts = { background: true, view: view }; } else { -- 2.11.0