Uppiung the find next unread story titles page limit from 12 to 50.

This commit is contained in:
Samuel Clay 2013-01-02 18:00:14 -08:00
parent ef772ff0d3
commit 57653d067d
2 changed files with 4 additions and 4 deletions

View file

@ -74,7 +74,7 @@
this.constants = {
FEED_REFRESH_INTERVAL: (1000 * 60) * 1, // 1 minute
FILL_OUT_PAGES: 50,
FIND_NEXT_UNREAD_STORY_TRIES: 12,
FIND_NEXT_UNREAD_STORY_TRIES: 50,
RIVER_STORIES_FOR_STANDARD_ACCOUNT: 5,
MIN_FEED_LIST_SIZE: 206
};

View file

@ -149,10 +149,10 @@ NEWSBLUR.Views.Folder = Backbone.View.extend({
if (!this.model) return;
var has_unreads = this.model.has_unreads({include_selected: true});
if (has_unreads || !NEWSBLUR.assets.preference('hide_read_feeds')) {
this.$el.removeClass('NB-hidden');
} else {
if (!has_unreads && !NEWSBLUR.assets.preference('hide_read_feeds')) {
this.$el.addClass('NB-hidden');
} else {
this.$el.removeClass('NB-hidden');
}
},