Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
373B

  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>