X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fmkws-widget-main.js;h=5951c1c140c802f98a2c9d64e2969baf182ae93a;hb=c302068454a4f0a77574eae189b582a01138e763;hp=92716027b0639467e1209637f95bb1b3504e3fd4;hpb=5374406d1e6b911c4a92a826b20ec6282ec31012;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-main.js b/src/mkws-widget-main.js index 9271602..5951c1c 100644 --- a/src/mkws-widget-main.js +++ b/src/mkws-widget-main.js @@ -140,7 +140,7 @@ mkws.registerWidgetType('Records', function() { } }); - widget.autosearch(that); + that.autosearch(); }); @@ -265,7 +265,7 @@ mkws.registerWidgetType('Results', function() { \ '); - widget.autosearch(this); + this.autosearch(); }); @@ -420,6 +420,26 @@ mkws.registerWidgetType('Config', function() { }); +mkws.registerWidgetType('Progress', function() { + var that = this; + + this.node.hide(); + this.team.queue("stat").subscribe(function(data) { + var s = ''; + for (var i = 0; i < data.clients; i++) { + if (i == data.clients - data.activeclients) { + s += ''; + s += ''; + } + s += '█'; + } + s += ''; + that.node.html(s); + that.node.show(); + }); +}); + + // Some elements have mkws* classes that makes them appear as widgets // -- for example, because we want to style them using CSS -- but have // no actual functionality. We register these to prevent ignorable