mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Merge branch 'master' into grid
* master: Marking all site stories as read with confirmation turned off should also work on mark read buttons (not just shift+a).
This commit is contained in:
commit
b7393e70fb
1 changed files with 5 additions and 1 deletions
|
@ -251,7 +251,11 @@ NEWSBLUR.Views.StoryTitlesHeader = Backbone.View.extend({
|
|||
|
||||
mark_folder_as_read: function(e, days_back) {
|
||||
if (!this.showing_fake_folder) return;
|
||||
NEWSBLUR.reader.open_mark_read_modal({days: days_back || 0});
|
||||
if (NEWSBLUR.assets.preference('mark_read_river_confirm')) {
|
||||
NEWSBLUR.reader.open_mark_read_modal({days: days_back || 0});
|
||||
} else {
|
||||
NEWSBLUR.reader.mark_folder_as_read();
|
||||
}
|
||||
this.$('.NB-feedbar-mark-feed-read-container').fadeOut(400);
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue