X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=fef616f71ae8e6991ce7416ffcbcdfdd0a60267a;hb=5caa51f2ff3d501afdb33336afba923443dcd6fe;hp=3df2f60bb45c4f869435525c03e93d4601248541;hpb=6f59bb0256441ab1d48816a5524b8666dc799ff7;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 3df2f60..fef616f 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -39,10 +39,18 @@ mkws.registerWidgetType('Facet', function() { return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]'; }; + var t2 = that.team.loadTemplate('Facet-' + caption); + that.log("template for Facet-" + caption + " is " + !!t2); + if (!t2) { + that.log("no " + caption + "-specific template, falling back"); + t2 = that.team.loadTemplate('Facet'); + } + that.log("template for Facet is " + !!t2); + that.team.queue("termlists").subscribe(function(data) { data = data[name]; - var template = that.team.loadTemplate('facetTitle-' + caption, mkws.M(caption)) - var title = template({ query: that.config.query }); + var t1 = that.team.loadTemplate('facetTitle-' + caption, mkws.M(caption)) + var title = t1({ query: that.config.query }); var acc = []; acc.push('
', title, '
'); @@ -56,8 +64,7 @@ mkws.registerWidgetType('Facet', function() { fn = 'limitTarget'; field = data[i].id; } - var template = that.team.loadTemplate('Facet'); - var s = template({ + var s = t2({ team: teamName, fn: fn, field: field,