feature: auto-focus main input field on desktop

This commit is contained in:
Josiah 2024-06-06 13:57:07 -07:00
parent 2baa843909
commit c9c004a3fb

View File

@ -666,6 +666,10 @@ window.onload = () => {
} }
window.history.replaceState(null, '', window.location.pathname); window.history.replaceState(null, '', window.location.pathname);
if (!isMobile) {
eid("url-input-area").focus();
}
// fix for animations not working in Safari // fix for animations not working in Safari
if (isIOS) { if (isIOS) {
document.addEventListener('touchstart', () => {}, true); document.addEventListener('touchstart', () => {}, true);