mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
Fixing titles scroll in Firefox.
This commit is contained in:
parent
55eb479f4d
commit
a7e670a5ed
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue