category.js 213 B

12345678
  1. (() => {
  2. let selection = null;
  3. if (document.location.hash !== null &&
  4. (selection = document.getElementById(document.location.hash.replace("#", ""))) !== null) {
  5. selection.classList.add("selected");
  6. }
  7. })();