user_saml/js/selectUserBackEnd.js

11 lines
178 B
JavaScript

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