mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Keyboard shortcut m now marks read/unread. Use shift+m for oldest.
This commit is contained in:
parent
505847d4e0
commit
7bfdf8b4d8
1 changed files with 5 additions and 0 deletions
|
@ -5530,6 +5530,11 @@
|
|||
NEWSBLUR.reader.active_story.story_view.expand_story();
|
||||
});
|
||||
$document.bind('keydown', 'm', function(e) {
|
||||
e.preventDefault();
|
||||
// self.show_last_unread_story();
|
||||
self.mark_active_story_read();
|
||||
});
|
||||
$document.bind('keydown', 'shift+m', function(e) {
|
||||
e.preventDefault();
|
||||
self.show_last_unread_story();
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue