Files
opensim/bin/data/updater.js
Teravus Ovares e9cef70f89 * Updates the sim stats module. Cleans out some of the rot.
* Adds a prototype web stats module which is disabled by default.  It's functional with one report right now, however, the database structure may change, so I don't recommend enabling this to keep actual stats right now.  I'll let you know when it's safe.
* Adds Prototype for ajaxy web content
* removed a warning or two.
2009-01-03 03:30:03 +00:00

20 lines
556 B
JavaScript

var updater = Class.create({
initialize: function(divToUpdate, interval, file) {
this.divToUpdate = divToUpdate;
this.interval = interval;
this.file = file;
new PeriodicalExecuter(this.getUpdate.bind(this), this.interval);
},
getUpdate: function() {
var oOptions = {
method: "POST",
parameters: "intervalPeriod="+this.interval,
asynchronous: true,
onComplete: function (oXHR, Json) {
$(this.divToUpdate).innerHTML = oXHR.responseText;
}
};
var oRequest = new Ajax.Updater(this.divToUpdate, this.file, oOptions);
}
});