lemonldap-ng/lemonldap-ng-portal/site/htdocs/static/common/js/kerberos.js

21 lines
434 B
JavaScript
Raw Normal View History

2017-04-06 22:37:36 +02:00
// Generated by CoffeeScript 1.10.0
(function() {
$(document).ready(function() {
2017-04-06 22:37:38 +02:00
return $.ajax(portal + '?kerberos=1', {
2017-04-06 22:37:36 +02:00
dataType: 'json',
statusCode: {
401: function() {
2017-04-06 22:37:38 +02:00
return $('#lform').submit();
2017-04-06 22:37:36 +02:00
}
},
success: function(data) {
2017-04-06 22:37:38 +02:00
return $('#lform').submit();
2017-04-06 22:37:36 +02:00
},
error: function() {
2017-04-06 22:37:38 +02:00
return $('#lform').submit();
2017-04-06 22:37:36 +02:00
}
});
});
}).call(this);