Python Library Caching
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

search-focus.js 559B

123456789101112131415161718192021
  1. function isInputFocused() {
  2. const activeElement = document.activeElement;
  3. return (
  4. activeElement.tagName === 'INPUT' ||
  5. activeElement.tagName === 'TEXTAREA' ||
  6. activeElement.isContentEditable
  7. );
  8. }
  9. document.addEventListener('keydown', function(event) {
  10. if (event.key === '/') {
  11. if (!isInputFocused()) {
  12. // Prevent "/" from being entered in the search box
  13. event.preventDefault();
  14. // Set the focus on the search box
  15. const searchBox = document.getElementById('search-box');
  16. searchBox.focus();
  17. }
  18. }
  19. });