mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-03 09:17:32 +01:00
8 lines
156 B
JavaScript
8 lines
156 B
JavaScript
$(document).ready(() => {
|
|
Mousetrap.bind('s', () => {
|
|
$('#search').trigger('click');
|
|
$('#search_entry_term').focus();
|
|
return false;
|
|
});
|
|
});
|