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

publicshareauth.js « js « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f3f0d0a7d49b078e2b20645cd22b6c5a68a5571 (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);
		}
	});
});