More actions
Make the search bar on Template:Home/nav activate search for the Vector skin. |
m Fix: use key 'F' instead of '/' |
||
| Line 4: | Line 4: | ||
searchInput.onclick = function() { | searchInput.onclick = function() { | ||
document.dispatchEvent(new KeyboardEvent('keydown', { | document.dispatchEvent(new KeyboardEvent('keydown', { | ||
'key': ' | 'key': 'F', | ||
'ctrlKey': true, | 'ctrlKey': true, | ||
'shiftKey': true | 'shiftKey': true | ||
})); | })); | ||
}; | }; | ||
Revision as of 13:45, 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': 'F',
'ctrlKey': true,
'shiftKey': true
}));
};