X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=2e684f660564b32002c86b07ca7d8bd4983cfa02;hb=03aa531c961b56b06bcc2e2b94ccb47cdb86e7e4;hp=294f3ff9788e6e5afd815be367df1aaa1fd13f05;hpb=a4989aded76c2239a89abe0472ead2fc308b8206;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 294f3ff..2e684f6 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,24 +1,21 @@ -mkws.registerWidgetType('Termlists', function() { +mkws.registerWidgetType('termlists', function() { // Initially hide the termlists; display when we get results var that = this; var team = this.team; - mkws.$(document).ready(function() { - that.node.hide(); - }); team.queue("termlists").subscribe(function(data) { - that.node.show(); + that.node.addClass("active"); }); var template = team.loadTemplate(this.config.template || "Termlists"); this.node.html(template({ - team: team, + team: team.name(), facets: this.config.facets })); this.autosearch(); }); -mkws.registerWidgetType('Facet', function() { +mkws.registerWidgetType('facet', function() { var facetConfig = { xtargets: [ "Sources", 16, false ], subject: [ "Subjects", 10, true ], @@ -55,6 +52,7 @@ mkws.registerWidgetType('Facet', function() { linkdata += 'onclick="' + action + ';return false;"'; terms.push({ term: data[i].name, + field: data[i].id, count: data[i].freq, linkdata: linkdata }); @@ -75,6 +73,7 @@ mkws.registerWidgetType('Facet', function() { that.node.html(template({ name: name, caption: caption, + query: that.config.query, terms: terms })); });