From: Mike Taylor Date: Tue, 29 Apr 2014 11:11:44 +0000 (+0100) Subject: Termlists widget creates the individual Facet widgets therein. X-Git-Tag: 1.0.0~817 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=5913a3ab435b97039cf404c5eb4a170c140d8445 Termlists widget creates the individual Facet widgets therein. --- diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index e29ede0..33d12b9 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -1,13 +1,23 @@ mkws.registerWidgetType('Termlists', function() { var that = this; - var facets = that.config.facets; + // Initially hide the termlists; display when we get results + $(document).ready(function() { + $(that.node).hide(); + }); this.team.queue("termlists").subscribe(function(data) { - // display if we first got results $(that.node).show(); }); - widget.autosearch(that); + var acc = []; + var facets = this.config.facets; + acc.push('
' + mkws.M('Termlists') + '
'); + for (var i = 0; i < facets.length; i++) { + acc.push('
', '
'); + } + $(this.node).html(acc.join('')); + + widget.autosearch(this); });