Skip to content
keepalive.js 162 B
Newer Older
window.startKeepAlive = function (restPath, windowId) {
    setInterval(function () {
        $.get(restPath + '/keepalive?dswid=' + windowId);
    }, 60000);
};