Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
272B

  1. <script>
  2. $(document).ready(function() {
  3. var dropdown = document.querySelector('{{ class }}');
  4. dropdown.addEventListener('click', function(event) {
  5. event.stopPropagation();
  6. dropdown.classList.toggle('is-active');
  7. });
  8. });
  9. </script>