not really known
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.

15 lines
306 B

  1. // ==========================
  2. // Login
  3. // ==========================
  4. // Enter Button
  5. $(document).ready(function() {
  6. $('#userNickname').on('change', function(){
  7. if($(this).val()) {
  8. $('.button--enter').addClass('is--active');
  9. } else {
  10. $('.button--enter').removeClass('is--active');
  11. }
  12. });
  13. });