kiwix-wiktionary-toggle-navcontent

Fixes toggling of all NavContent instances in kiwix wiktionary.

  1. // ==UserScript==
  2. // @name kiwix-wiktionary-toggle-navcontent
  3. // @version 0.0
  4. // @description Fixes toggling of all NavContent instances in kiwix wiktionary.
  5. // @include http://localhost:1024/*
  6. // @namespace https://greasyfork.org/users/217495-eric-toombs
  7. // ==/UserScript==
  8.  
  9. for (nh of document.getElementsByClassName("NavHead")) {
  10. nh.onclick = (e) => {
  11. ncs = e.target.parentElement.getElementsByClassName("NavContent")[0].style;
  12. if (ncs.display == "block") {
  13. ncs.display = "none";
  14. }
  15. else {
  16. ncs.display = "block";
  17. }
  18. };
  19. }