Fix JS error when searchbox is not present
When the search box is not present (e.g., https://docs.racket-lang.org/demo-m1/index.html), pressing "S" will result in a JS error. This PR fixes the problem. Note that semantically it makes more sense to give an ID to the search box as we know exactly what search box we want.
This commit is contained in:
parent
7c7e1213d0
commit
154ffe21b5
|
@ -225,6 +225,7 @@
|
|||
`(form ([class "searchform"])
|
||||
(input
|
||||
([class "searchbox"]
|
||||
[id "searchbox"]
|
||||
[type "text"]
|
||||
[tabindex "1"]
|
||||
[placeholder ,emptylabel]
|
||||
|
|
|
@ -173,8 +173,10 @@ AddOnLoad(function(){
|
|||
AddOnLoad(function(){
|
||||
window.addEventListener("keyup", function(e) {
|
||||
if ((e.key === 's' || e.key === 'S') && e.target === document.body) {
|
||||
var field = document.getElementsByClassName("searchbox")[0];
|
||||
field.focus();
|
||||
var searchBox = document.getElementById('searchbox');
|
||||
if (searchBox) {
|
||||
searchBox.focus();
|
||||
}
|
||||
}
|
||||
}, false);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user