Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
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ů.

12345678910
  1. <script>
  2. $(document).ready(function() {
  3. // Check for click events on the navbar burger icon
  4. $(".navbar-burger").click(function() {
  5. // Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
  6. $(".navbar-burger").toggleClass("is-active");
  7. $(".navbar-menu").toggleClass("is-active");
  8. });
  9. });
  10. </script>