user_saml/js/selectUserBackEnd.js
Björn Schiessle a27f7a04a8
fix select idp combobox so that it also works with chromium
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
2018-11-22 15:49:48 +01:00

11 lines
178 B
JavaScript

$(window).load(function() {
$(".login-chose-saml-idp").change(function() {
var target = $(this).val();
if (target !== '') {
window.location.href = target;
}
});
});