forked from extern/egroupware
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
|
/**
|
||
|
* Automatically click the input button to redirect the user to
|
||
|
* the SSO
|
||
|
*/
|
||
|
window.onload = function () {
|
||
|
document.getElementById('postLoginSubmitButton').click();
|
||
|
};
|