diff --git a/js/views/list_view.js b/js/views/list_view.js index fce35ab4..7a3b29ca 100644 --- a/js/views/list_view.js +++ b/js/views/list_view.js @@ -48,13 +48,7 @@ var Whisper = Whisper || {}; resize: function() { var height = window.innerHeight - $('#header').height() - $('#footer').height(); - if (this.$el.height() > height) { - this.$el.css('height', height + 'px'); - this.$el.css('overflow-y', 'scroll'); - } else { - this.$el.css('height', 'auto'); - this.$el.css('overflow-y', 'auto'); - } + this.$el.css('height', height + 'px'); }, render: function() {