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.

publicshareauth.js 249B

123456789
  1. $(document).ready(function(){
  2. $('#password').on('keyup input change', function() {
  3. if ($('#password').val().length > 0) {
  4. $('#password-submit').prop('disabled', false);
  5. } else {
  6. $('#password-submit').prop('disabled', true);
  7. }
  8. });
  9. });