Edit

kc3-lang/kc3/test/httpd/assets/js/pixel.js

Branch :

  • Show log

    Commit

  • Author : thodg Thomas de Grivel
    Date : 2024-09-06 14:30:50
    Hash : b11014f0
    Message : httpd renders a layout containing nav and markdown pages, use 'npm i' and 'make' in assets directory

  • test/httpd/assets/js/pixel.js
  • import $ from 'jquery';
    
    $(function () {
      $('.pixel').click(function (event) {
        const el = event.target;
        if (el.classList.contains('pixel-0')) {
          el.classList.remove('pixel-0');
          el.classList.add('pixel-1');
        }
        else if (el.classList.contains('pixel-1')) {
          el.classList.remove('pixel-1');
          el.classList.add('pixel-0');
        }
      });
    });