X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=8f6e467788873c3dc508c63343d2e88a3bffde16;hb=830c5e2c08791d5ada5edd081eeb7538cbe28531;hp=54c65c4212587f000b8e0e1247a4d8f188c546f7;hpb=e585a73f9012fe534c2b84859923c2c5fc5ff589;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 54c65c4..8f6e467 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -11,7 +11,7 @@ mkws.registerWidgetType('Termlists', function() { var template = team.loadTemplate(this.config.template || "Termlists"); this.node.html(template({ - team: team, + team: team.name(), facets: this.config.facets })); this.autosearch(); @@ -59,7 +59,19 @@ mkws.registerWidgetType('Facet', function() { linkdata: linkdata }); } - var template = team.loadTemplate(that.config.template || "Facet"); + // configured template > facet specific template > default facet template + var template; + if (that.config.template) { + template = team.loadTemplate(that.config.template); + } else { + template = team.loadTemplate("Facet-" + caption); + if (template) { + that.log("Using Facet-" + caption + " template.") + } else { + that.log("No " + caption + " specific template, using default.") + template = team.loadTemplate("Facet"); + } + } that.node.html(template({ name: name, caption: caption,