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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/install.js')
-rw-r--r--core/src/install.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/src/install.js b/core/src/install.js
index c89380bed58..a25945e7591 100644
--- a/core/src/install.js
+++ b/core/src/install.js
@@ -3,6 +3,8 @@ import { translate as t } from '@nextcloud/l10n'
import { getToken } from './OC/requesttoken'
import getURLParameter from './Util/get-url-parameter'
+import './jquery/showpassword'
+
import 'jquery-ui/ui/widgets/button'
import 'jquery-ui/themes/base/theme.css'
import 'jquery-ui/themes/base/button.css'
@@ -134,4 +136,7 @@ window.addEventListener('DOMContentLoaded', function() {
drawTitles: true,
nonce: btoa(getToken()),
})
+
+ $('#dbpass').showPassword().keyup()
+ $('#adminpass').showPassword().keyup()
})