Files
wallabag/app/Resources/static/themes/material/js/shortcuts/entry.js

27 lines
599 B
JavaScript
Raw Normal View History

import Mousetrap from 'mousetrap';
import $ from 'jquery';
$(document).ready(() => {
if ($('#article').length > 0) {
/* open original article */
Mousetrap.bind('o', () => {
$('ul.side-nav a.original i')[0].click();
});
2016-11-02 16:44:20 +01:00
/* mark as favorite */
Mousetrap.bind('f', () => {
2025-03-21 23:28:08 +01:00
$('ul.side-nav button.favorite i')[0].click();
});
2016-11-02 16:44:20 +01:00
/* mark as read */
Mousetrap.bind('a', () => {
$('ul.side-nav button.markasread i')[0].click();
});
2016-11-02 16:44:20 +01:00
/* delete */
Mousetrap.bind('del', () => {
2025-03-23 03:09:42 +01:00
$('ul.side-nav button.delete i')[0].click();
});
}
2016-11-02 16:44:20 +01:00
});