X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-termlists.js;h=43737c1b961626990232ae6a6a0662af577d317a;hp=294f3ff9788e6e5afd815be367df1aaa1fd13f05;hb=6f7d5a4860ec055c40290325b7c1498cb64ad79c;hpb=a4989aded76c2239a89abe0472ead2fc308b8206 diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 294f3ff..43737c1 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -2,16 +2,13 @@ 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();