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
{{ message }}
This repository has been archived by the owner on Sep 19, 2018. It is now read-only.
If you put the warnAfter to 2000 (just to test) and keeping choosing the option 'Stay connected' the session timeout dialog only appears twice.
Changing: $('#sessionTimeout-dialog-logout').on('click', function () { window.location = o.logoutUrl; }); $('#sessionTimeout-dialog').on('hide.bs.modal', function () { ...
To
$('body').on('click', '#sessionTimeout-dialog-logout', function () { window.location = o.logoutUrl; });
$('body').on('hide.bs.modal', '#sessionTimeout-dialog', function () { ...
Solve the issue
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
If you put the warnAfter to 2000 (just to test) and keeping choosing the option 'Stay connected' the session timeout dialog only appears twice.
$('#sessionTimeout-dialog-logout').on('click', function () { window.location = o.logoutUrl; }); $ ('#sessionTimeout-dialog').on('hide.bs.modal', function () { ...
Changing:
To
$('body').on('click', '#sessionTimeout-dialog-logout', function () { window.location = o.logoutUrl; });
$('body').on('hide.bs.modal', '#sessionTimeout-dialog', function () { ...
Solve the issue
The text was updated successfully, but these errors were encountered: