From 5913a3ab435b97039cf404c5eb4a170c140d8445 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 29 Apr 2014 12:11:44 +0100 Subject: [PATCH] Termlists widget creates the individual Facet widgets therein. --- src/mkws-widget-termlists.js | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) 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); }); -- 1.7.10.4