Files
ayanova7/source/ri/ri/Scripts/ayKeepAlive.js
2018-06-29 19:47:36 +00:00

8 lines
275 B
JavaScript

var ayKCounter = 0;
var ayTimer;
function ayKeepAlive() {
ayKCounter++;
clearTimeout(ayTimer);
$.get(baseSiteURL + "Home/AyKeepSessionAlive?c=" + ayKCounter, {}, { cache: false }, function (result) { });
ayTimer = setInterval(ayKeepAlive, 300000);
}