mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
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();
|
||
|
};
|