X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=575a655a2218d6c436f0b8e1849f5b1536644572;hp=e3dc55e2443b3daaaa8cc4780aae70ab0730f470;hb=8a805ab22dce288798fbaaf4f8b7f2eb09f7bb03;hpb=36721667730b5d8aae5b6df304f69d96f2c1d21d diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index e3dc55e..575a655 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -2,11 +2,11 @@ mkws.registerWidgetType('termlists', function() { // Initially hide the termlists; display when we get results var that = this; var team = this.team; - team.queue("termlists").subscribe(function(data) { + team.queue("facets").subscribe(function(data) { that.node.addClass("active"); }); - var template = team.loadTemplate(this.config.template || "termlists"); + var template = team.loadTemplate(this.config.template || "facets"); this.node.html(template({ team: team.name(), facets: this.config.facets @@ -33,7 +33,7 @@ mkws.registerWidgetType('facet', function() { return '[Widget ' + team.name() + ':' + that.type + '(' + name + ')]'; }; - team.queue("termlists").subscribe(function(data) { + team.queue("facets").subscribe(function(data) { data = data[name]; var terms = []; var teamName = team.name();