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

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2018-11-22 12:30:33 +0300
committerBjoern Schiessle <bjoern@schiessle.org>2018-11-22 17:49:48 +0300
commita27f7a04a8957172d415e17fcb8820ce8cc052c6 (patch)
treeac931b64f54bd7d9aa34b850e5e0fee8bcc3a96e /js
parent65d3cf6e8836ef9df7e1d7a82bdf285ae96b4031 (diff)
fix select idp combobox so that it also works with chromium
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'js')
-rw-r--r--js/selectUserBackEnd.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/selectUserBackEnd.js b/js/selectUserBackEnd.js
index 0c0c15ba..ca6596ad 100644
--- a/js/selectUserBackEnd.js
+++ b/js/selectUserBackEnd.js
@@ -1,6 +1,6 @@
$(window).load(function() {
- $(document).on('click', 'option', function() {
+ $(".login-chose-saml-idp").change(function() {
var target = $(this).val();
if (target !== '') {
window.location.href = target;