-
-
+
diff --git a/js/views/inbox_view.js b/js/views/inbox_view.js
index 6c1d9d26b..f4901b250 100644
--- a/js/views/inbox_view.js
+++ b/js/views/inbox_view.js
@@ -55,6 +55,7 @@
Whisper.InboxView = Whisper.View.extend({
template: $('#inbox').html(),
+ className: 'inbox',
initialize: function () {
this.render();
@@ -64,7 +65,7 @@
this.openConversation.bind(this, null));
this.inbox = new Whisper.ConversationListView({
- el : this.$el.find('#contacts'),
+ el : this.$el.find('.conversations'),
collection : bg.inbox
}).render();
diff --git a/stylesheets/_index.scss b/stylesheets/_index.scss
index 9ca4e78ed..c5a166113 100644
--- a/stylesheets/_index.scss
+++ b/stylesheets/_index.scss
@@ -2,10 +2,11 @@
padding: $header-height 0 0;
}
-.gutter, #contacts {
+.new-conversation, .inbox, .gutter {
height: 100%;
}
-#contacts {
+.scrollable {
+ height: 100%;
overflow: auto;
}
diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css
index ce5ef48bd..4e3a43a0d 100644
--- a/stylesheets/manifest.css
+++ b/stylesheets/manifest.css
@@ -137,10 +137,11 @@ button.back {
.gutter {
padding: 36px 0 0; }
-.gutter, #contacts {
+.new-conversation, .inbox, .gutter {
height: 100%; }
-#contacts {
+.scrollable {
+ height: 100%;
overflow: auto; }
.socket-status {