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

selectUserBackEnd.js « js - github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca6596ad450e5481e2bd3467841d5a656740ff4f (plain)
1
2
3
4
5
6
7
8
9
10
$(window).load(function() {

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

});