Current Path : /usr/local/mgr5/skins/orion/src/ |
Current File : //usr/local/mgr5/skins/orion/src/App.KeepAlive.js |
//module keepalive for keep session App.KeepAlive = function(window, $, EventMgr) { 'use strict'; var init = function() { EventMgr.bind('loadPage', start); }, keepAlive = function() { var param = { func: 'keepalive' }; EventMgr.trigger('ajaxRequest', { url: pageInfo.url, param: param, trfunc: 'DoNothing', queue: 'noqueue' }); }, start = function() { setInterval(function() { keepAlive(); }, 900001); }; return { init: init }; }(window, $, EventMgr);