Theme: enable autofocus of #q only on the index page and when the width > 50em

Related to #1270
This commit is contained in:
Alexandre FLAMENT 2022-06-02 20:33:31 +00:00
parent 96dc4369d5
commit fbad93e808

View file

@ -86,7 +86,7 @@
qinput.addEventListener('focus', placeCursorAtEndOnce, false);
if (!isMobile) {
if (!isMobile && document.querySelector('.index_endpoint')) {
qinput.focus();
}
}