- Author:
- David Nickerson <david.nickerson@gmail.com>
- Date:
- 2021-09-16 00:41:19+12:00
- Desc:
- Updating Noble 1962 model:
* Exposing the membrane potential to the top-level model;
* adding SED-ML for the paced and pacemaker variants of the model.
Using OpenCOR Snapshot release 2021-09-14.
- Permanent Source URI:
- https://models.fieldml.org/workspace/a1/rawfile/f954e59183314cd37f86c8832dc81317d01c8ec5/dojo-presentation/js/dojo/dojox/analytics/plugins/idle.js
dojo.provide("dojox.analytics.plugins.idle");
// window startup data
dojox.analytics.plugins.idle = new (function(){
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<idleResets.length;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);
}
});
}
}));
})();