mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Uppiung the find next unread story titles page limit from 12 to 50.
This commit is contained in:
parent
ef772ff0d3
commit
57653d067d
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
};
|
||||
|
|
|
@ -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');
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue