More actions
Make the search bar on Template:Home/nav activate search for the Vector skin. |
(No difference)
|
Revision as of 13:44, 5 June 2025
/* All JavaScript here will be loaded for users of the Vector skin */
// Make the search bar on Template:Home/nav activate search.
var searchInput = document.getElementById('home-search');
searchInput.onclick = function() {
document.dispatchEvent(new KeyboardEvent('keydown', {
'key': '/',
'ctrlKey': true,
'shiftKey': true
}));
};