2020-04-12 03:24:48 +00:00
|
|
|
/*
|
|
|
|
* 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' );
|
2020-04-12 03:24:48 +00:00
|
|
|
|
|
|
|
function searchInputFocus() {
|
2020-06-06 18:47:03 +00:00
|
|
|
var searchInput = document.getElementById( 'searchInput' );
|
2020-04-12 03:24:48 +00:00
|
|
|
|
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 );
|