mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-18 03:09:49 +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;
|
|
});
|
|
});
|