X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=4052251142361921cb291163655ad2b5e92f38a9;hb=48354a0d85923da10586a45e282ef15ad14e04fa;hp=8f6e467788873c3dc508c63343d2e88a3bffde16;hpb=88601f8d8ed0c9dc6c095c13f02b15964f52f0e0;p=mkws-moved-to-github.git diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 8f6e467..4052251 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -2,11 +2,8 @@ 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"); @@ -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 })); });