mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-24 06:24:22 +00:00
15 lines
337 B
JavaScript
15 lines
337 B
JavaScript
/**
|
|
* @return {void}
|
|
*/
|
|
function initSearchLoader() {
|
|
const searchForm = document.getElementById( 'searchform' );
|
|
const searchInput = document.getElementById( 'searchInput' );
|
|
|
|
if ( searchForm && searchInput ) {
|
|
const typeahead = require( './typeahead.js' );
|
|
typeahead.init( searchForm, searchInput );
|
|
}
|
|
}
|
|
|
|
initSearchLoader();
|