source: [view]
this.addData = dojo.hitch(dojox.analytics, "addData", "idle");
this.idleTime=dojo.config["idleTime"] || 60000;
this.idle=true;
this.setIdle = function(){
this.addData("isIdle");
this.idle=true;
}
dojo.addOnLoad(dojo.hitch(this, function(){
var idleResets=["onmousemove","onkeydown","onclick","onscroll"];
for (var i=0;i dojo.connect(dojo.doc,idleResets[i],this, function(e){
if (this.idle){
this.idle=false;
this.addData("isActive");
this.idleTimer=setTimeout(dojo.hitch(this,"setIdle"), this.idleTime);
}else{
clearTimeout(this.idleTimer);
this.idleTimer=setTimeout(dojo.hitch(this,"setIdle"), this.idleTime);
}
});
}
}));