Fix MKWS-363.
[mkws-moved-to-github.git] / src / mkws-widget-facets.js
index 478bf0a..fbf0e47 100644 (file)
@@ -64,16 +64,15 @@ mkws.registerWidgetType('facet', function() {
     } else {
       template = team.loadTemplate("facet-" + name);
       if (template) {
-        that.log("Using facet-" + name + " template.")
+        that.info("Using facet-" + name + " template.")
       } else {
-        that.log("No " + name + " specific template, using default.")
+        that.info("No " + name + " specific template, using default.")
         template = team.loadTemplate("facet");
       }
     }
     that.node.html(template({
       name: name,
       caption: caption,
-      query: that.config.query,
       terms: terms
     }));
   });