You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a big screen in the office to monitor builds and us this great plugin for that. However the screen runs in kiosk mode, so no interaction is needed. When updating Jenkins or on reboot (cookies timed out) the page will show the Sorry to bother you message, and be stuck at that message, so I need to automatically reload the page when this happens.
I found that adding this javascript the the service.js file:
setTimeout(function() {
$window.location.reload();
}, 10000);
after the:
$dialog.messageBox(...);
line solves the issue and automatically reloads the page and everything is fine again.
The text was updated successfully, but these errors were encountered:
We have a big screen in the office to monitor builds and us this great plugin for that. However the screen runs in kiosk mode, so no interaction is needed. When updating Jenkins or on reboot (cookies timed out) the page will show the Sorry to bother you message, and be stuck at that message, so I need to automatically reload the page when this happens.
I found that adding this javascript the the service.js file:
setTimeout(function() {
$window.location.reload();
}, 10000);
after the:
$dialog.messageBox(...);
line solves the issue and automatically reloads the page and everything is fine again.
The text was updated successfully, but these errors were encountered: