Keyboard shortcut m now marks read/unread. Use shift+m for oldest.

This commit is contained in:
Samuel Clay 2013-07-07 22:59:49 -07:00
parent 505847d4e0
commit 7bfdf8b4d8

View file

@ -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();
});