New widget-setup utility function, hideWhenNarrow.
[mkws-moved-to-github.git] / src / mkws-widget-termlists.js
index e29ede0..3ea68f5 100644 (file)
@@ -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('<div class="title">' + mkws.M('Termlists') + '</div>');
+    for (var i = 0; i < facets.length; i++) {
+       acc.push('<div class="mkwsFacet mkwsTeam_', this.team.name(), '" data-mkws-facet="', facets[i], '">', '</div>');
+    }
+    $(this.node).html(acc.join(''));
+
+    widget.autosearch(this);
 });
 
 
@@ -25,6 +35,10 @@ mkws.registerWidgetType('Facet', function() {
     var max = ref[1];
     var pzIndex = ref[2] ? name : null;
 
+    that.toString = function() {
+       return '[Widget ' + that.team.name() + ':' + that.type + '(' + name + ')]';
+    };
+
     that.team.queue("termlists").subscribe(function(data) {
        data = data[name];