1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-12 17:01:57 +02:00

Built site for AMR@2.1.1.9073: 2975697

This commit is contained in:
github-actions
2024-09-19 12:05:20 +00:00
parent fd917ad2bb
commit 2f239e59c4
156 changed files with 5846 additions and 190 deletions

View File

@ -152,3 +152,11 @@ async function searchFuse(query, callback) {
});
});
})(window.jQuery || window.$)
document.addEventListener('keydown', function(event) {
// Check if the pressed key is '/'
if (event.key === '/') {
event.preventDefault(); // Prevent any default action associated with the '/' key
document.getElementById('search-input').focus(); // Set focus to the search input
}
});