summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-20 12:30:35 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2020-07-20 12:42:08 +0200
commit6fcd075730dbd63d5dbb69da0ca5983b51a7240e (patch)
tree3b91e443159f6322e9af53bf495c17bd76c0ab7b /apps/user_ldap/js
parentb2e3466005f8fec7a753b078871f54c9fd5debb8 (diff)
downloadnextcloud-server-6fcd075730dbd63d5dbb69da0ca5983b51a7240e.tar.gz
nextcloud-server-6fcd075730dbd63d5dbb69da0ca5983b51a7240e.zip
Use DOMContentLoaded and fix sharebymail loading issue
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/user_ldap/js')
-rw-r--r--apps/user_ldap/js/renewPassword.js2
-rw-r--r--apps/user_ldap/js/wizard/wizard.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/user_ldap/js/renewPassword.js b/apps/user_ldap/js/renewPassword.js
index 7a58832c984..307d5f8294d 100644
--- a/apps/user_ldap/js/renewPassword.js
+++ b/apps/user_ldap/js/renewPassword.js
@@ -30,7 +30,7 @@ OCA.LDAP = _.extend(OC.LDAP || {}, {
},
});
-$(document).ready(function() {
+window.addEventListener('DOMContentLoaded', function() {
$('form[name=renewpassword]').submit(OCA.LDAP.onRenewPassword);
if($('#newPassword').length) {
diff --git a/apps/user_ldap/js/wizard/wizard.js b/apps/user_ldap/js/wizard/wizard.js
index 9ac03e117cd..39ab2e13ef8 100644
--- a/apps/user_ldap/js/wizard/wizard.js
+++ b/apps/user_ldap/js/wizard/wizard.js
@@ -75,6 +75,6 @@ OCA = OCA || {};
OCA.LDAP.Wizard.Wizard = Wizard;
})();
-$(document).ready(function() {
+window.addEventListener('DOMContentLoaded', function() {
new OCA.LDAP.Wizard.Wizard();
});