summaryrefslogtreecommitdiffstats
path: root/core/js/login/authpicker.js
blob: e1e34bbd8d6331d63270975522be8337eeaeaf4c (plain)
1
2
3
4
5
6
7
8
jQuery(document).ready(function() {
	$('#app-token-login').click(function (e) {
		e.preventDefault();
		$(this).addClass('hidden');
		$('#redirect-link').addClass('hidden');
		$('#app-token-login-field').removeClass('hidden');
	});
});