2016-11-25 13:57:07 -06:00

15 lines
222 B
JavaScript

function Widget()
{
this.element = null;
this.update = function()
{
var s = "";
for (var key in ronin.modules){
s += ronin.modules[key].widget();
}
this.element.innerHTML = s;
}
}