You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
559 B
24 lines
559 B
1 year ago
|
var SessionTimeout = (function () {
|
||
|
var i = function () {
|
||
|
$.sessionTimeout({
|
||
|
title: "Session Timeout Notification",
|
||
|
message: "Your session is expiring soon.",
|
||
|
redirUrl: "authentication-lockscreen.html",
|
||
|
logoutUrl: "authentication-login1.html",
|
||
|
warnAfter: 5e3,
|
||
|
redirAfter: 2e4,
|
||
|
ignoreUserActivity: !0,
|
||
|
countdownMessage: "Redirecting in {timer} seconds.",
|
||
|
countdownBar: !0,
|
||
|
});
|
||
|
};
|
||
|
return {
|
||
|
init: function () {
|
||
|
i();
|
||
|
},
|
||
|
};
|
||
|
})();
|
||
|
jQuery(function () {
|
||
|
SessionTimeout.init();
|
||
|
});
|