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

20 lines
481 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
*/
2020-04-13 18:49:17 +00:00
var searchToggle = document.getElementById( 'search-toggle' );
function searchInputFocus() {
2020-04-13 18:49:17 +00:00
var searchInput = document.getElementById( 'search-input' );
2020-04-13 18:49:17 +00:00
if ( searchToggle.checked !== false ) {
2020-04-12 03:39:34 +00:00
searchInput.focus();
}
2020-04-12 03:38:03 +00:00
}
2020-04-13 18:49:17 +00:00
searchToggle.addEventListener( 'click', searchInputFocus );