8 lines
275 B
JavaScript
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);
|
|
} |