From a7e670a5ed0cdd784c7b2fcd527d4da16f95d91b Mon Sep 17 00:00:00 2001 From: Samuel Clay Date: Wed, 24 Apr 2013 15:07:09 -0700 Subject: [PATCH] Fixing titles scroll in Firefox. --- media/js/newsblur/views/story_titles_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/js/newsblur/views/story_titles_view.js b/media/js/newsblur/views/story_titles_view.js index a7f0dfbc3..d7c76d927 100644 --- a/media/js/newsblur/views/story_titles_view.js +++ b/media/js/newsblur/views/story_titles_view.js @@ -207,7 +207,7 @@ NEWSBLUR.Views.StoryTitlesView = Backbone.View.extend({ var container_offset = $story_titles.position().top; var visible_height = $story_titles.height(); var scroll_y = $story_titles.scrollTop(); - var total_height = this.$el.outerHeight(true) + NEWSBLUR.reader.$s.$feedbar.outerHeight(true); + var total_height = this.$el.outerHeight() + NEWSBLUR.reader.$s.$feedbar.innerHeight(); // console.log(["scroll titles", container_offset, visible_height, scroll_y, total_height]); if (visible_height + scroll_y >= total_height) {