Python Library Caching
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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. });