Welcome to mirror list, hosted at ThFree Co, Russian Federation.

authenticate.js « js - github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cedacdc117c26e702b7b3addb81146f865dd9565 (plain)
1
2
3
4
5
6
7
8
9
$(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);
		}
	});
});