diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-10 16:59:03 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-12-16 18:45:37 +0100 |
commit | 51a22431ee824357dce0100cb000032f29aabd47 (patch) | |
tree | 339aa12a968c1738ed19a6edec8df81451f162b1 /core/js/installation.js | |
parent | 3cc33a98a898f247499896ae0674ae680564fb12 (diff) | |
download | nextcloud-server-51a22431ee824357dce0100cb000032f29aabd47.tar.gz nextcloud-server-51a22431ee824357dce0100cb000032f29aabd47.zip |
load showpassord.js conditionally in the template only if needed
Diffstat (limited to 'core/js/installation.js')
-rw-r--r-- | core/js/installation.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/js/installation.js b/core/js/installation.js new file mode 100644 index 00000000000..20ff346215f --- /dev/null +++ b/core/js/installation.js @@ -0,0 +1,5 @@ + +$(document).ready(function() { + $('#adminpass').showPassword().keyup(); + $('#dbpass').showPassword().keyup(); +}); |