From d5c85dfbd84e1c8828767869eb29c57f89ea9ea8 Mon Sep 17 00:00:00 2001 From: lilia Date: Sun, 8 Feb 2015 09:02:51 -1000 Subject: [PATCH] Resize inbox listview after it finishes loading Ensures that scrollbars are properly setup on load. --- js/views/inbox_view.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/views/inbox_view.js b/js/views/inbox_view.js index 50c5bf73..08a163dc 100644 --- a/js/views/inbox_view.js +++ b/js/views/inbox_view.js @@ -37,6 +37,7 @@ this.$el.addClass('loading'); this.conversations.fetchActive({reset: true}).then(function() { + this.inbox.resize(); this.$el.removeClass('loading'); window.conversations = this.conversations; // debug }.bind(this));