31392c2443
Now this is in core so the basics (that 99% of the app will want to use) looks always the same. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
9 lines
249 B
JavaScript
9 lines
249 B
JavaScript
$(document).ready(function(){
|
|
$('#password').on('keyup input change', function() {
|
|
if ($('#password').val().length > 0) {
|
|
$('#password-submit').prop('disabled', false);
|
|
} else {
|
|
$('#password-submit').prop('disabled', true);
|
|
}
|
|
});
|
|
});
|