Skip to content
Snippets Groups Projects

Add alt+a shortcut for search form and README

Closed ressa requested to merge issue/admin_toolbar-3494646:3494646-access-admin-toolbar into 3.x
Files
3
@@ -85,6 +85,14 @@
$searchTab.toggleClass('visible');
$searchInput.focus();
});
// Shortcut 'alt + a' will focus on the search form.
document.addEventListener('keydown', (event) => {
if (event.altKey && event.key === 'a') {
context.getElementById('admin-toolbar-search-input').focus();
}
});
});
},
getItemLabel: function (item) {
Loading