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 was 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 () { ...