switchView function uses new widget-type names.
[mkws-moved-to-github.git] / src / mkws-widget-termlists.js
index 43737c1..2e684f6 100644 (file)
@@ -1,4 +1,4 @@
-mkws.registerWidgetType('Termlists', function() {
+mkws.registerWidgetType('termlists', function() {
   // Initially hide the termlists; display when we get results
   var that = this;
   var team = this.team;
@@ -15,7 +15,7 @@ mkws.registerWidgetType('Termlists', function() {
 });
 
 
-mkws.registerWidgetType('Facet', function() {
+mkws.registerWidgetType('facet', function() {
   var facetConfig = {
     xtargets: [ "Sources",  16, false ],
     subject:  [ "Subjects", 10, true ],
@@ -52,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
       }); 
@@ -72,6 +73,7 @@ mkws.registerWidgetType('Facet', function() {
     that.node.html(template({
       name: name,
       caption: caption,
+      query: that.config.query,
       terms: terms
     }));
   });