mediawiki-skins-Citizen/resources/scripts/searchfocus.js

19 lines
487 B
JavaScript
Raw Normal View History

/*
* Citizen - Search focus JS
* https://starcitizen.tools
*
* Focus on search input when checkbox is toggled
* TODO: Clean up all the JS files after the skin is converted to Mustache
*/
var searchToggle = document.getElementById('search-toggle');
function searchInputFocus() {
var searchInput = document.getElementById('search-input');
2020-04-12 03:38:03 +00:00
if (searchToggle.checked !== false) {
searchInput.focus();
}
2020-04-12 03:38:03 +00:00
}
searchToggle.addEventListener("click", searchInputFocus);