X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget.js;h=8be006482852f6031de084ed2b7d5384b1a829f0;hb=db46e4d678127a9c80ee5b329ad447c1c522195d;hp=25e68555170ee64f1767123c358aaa3236bfb486;hpb=d1efd21e67438e87e411f5849f1d74c8a1bd7d28;p=mkws-moved-to-github.git diff --git a/src/mkws-widget.js b/src/mkws-widget.js index 25e6855..8be0064 100644 --- a/src/mkws-widget.js +++ b/src/mkws-widget.js @@ -28,9 +28,11 @@ function widget($, team, type, node) { // Returns the HTML of a subwidget of the specified type. It gets // the same attributes at the parent widget that invokes this - // function, except where overrides are passed in. - that.subwidget = function(type, overrides) { - var attrs = {}; + // function, except where overrides are passed in. If defaults are + // also provided, then these are used when the parent widget + // provides no values. + that.subwidget = function(type, overrides, defaults) { + var attrs = { _team: team.name() }; // Copy locally-set properties from the parent widget for (var name in this.config) { @@ -45,10 +47,20 @@ function widget($, team, type, node) { log(this + " overrode property " + name + "='" + attrs[name] + "' for " + type + " subwidget"); } + if (defaults) { + for (var name in defaults) { + if (!attrs[name]) { + attrs[name] = defaults[name]; + log(this + " fell back to default property " + name + "='" + attrs[name] + "' for " + type + " subwidget"); + } + } + } + var s = []; - s.push('
'); return s.join('');