aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/BuildDemos.py
Commit message (Expand)AuthorAgeFilesLines
* Combine Archetype and Demo build scripts (#9943)Teemu Suo-Anttila2017-09-071-30/+61
* Build docker image for testing demos (#9826)Teemu Suo-Anttila2017-08-161-7/+11
* Fix python list syntax in BuildDemosHenri Sara2016-12-091-1/+1
* Add demo validation and deployment status traffic light to new build reportAleksi Hietanen2016-11-041-7/+20
* Migrating 7.7.1, 7.7.2, 7.7.3 to V8.Denis Anisimov2016-10-031-0/+1
* Remove grid-gwt and parking from tested demosTeemu Suo-Anttila2016-09-151-2/+0
* Add plugin repository parameter to validation scriptsTeemu Suo-Anttila2016-04-191-25/+4
* Fix demo and archetype build scripts to deploy all wars at onceTeemu Suo-Anttila2016-01-131-7/+11
* Improve BuildDemos exception handlingTeemu Suo-Anttila2015-12-021-1/+8
* Add sampler to BuildDemos, support specifying branch for demoTeemu Suo-Anttila2015-10-061-4/+10
* Add command line parameter for ignoring demosTeemu Suo-Anttila2015-09-141-2/+7
* Add optional --repo parameter for Demo validation scriptTeemu Suo-Anttila2015-07-131-5/+10
* Fix version number resolution for validation scriptsTeemu Suo-Anttila2015-07-081-3/+7
* Add build report generator scriptTeemu Suo-Anttila2015-07-081-7/+10
* Fix demo auto validation script to add validated version to contextTeemu Suo-Anttila2015-07-071-2/+2
* Add Demo validation script support for using local artifactsTeemu Suo-Anttila2015-07-071-4/+17
* Add --maven parameter to add mvn commandline parametersTeemu Suo-Anttila2015-07-071-4/+12
* Add DeployHelpers python module for adding wildfly auto deploymentTeemu Suo-Anttila2015-07-071-15/+24
* Add python script for validating demosTeemu Suo-Anttila2015-06-111-0/+41
kport/40394/stable30'>backport/40394/stable30 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js/authenticate.js
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);
		}
	});
});