X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=src%2Fmkws-widget-facets.js;h=2eefb95b74f92b4b1e8e5c037691ccecccc36633;hp=478bf0a85ce049311d239e2ab1116748a41f2afb;hb=6f042c63f7e3bd32a058de6e36f62b6ae15c4064;hpb=c1bd11003bc594199803e0012dcb8f114c8b99af diff --git a/src/mkws-widget-facets.js b/src/mkws-widget-facets.js index 478bf0a..2eefb95 100644 --- a/src/mkws-widget-facets.js +++ b/src/mkws-widget-facets.js @@ -2,7 +2,14 @@ mkws.registerWidgetType('facets', function() { // Initially hide the facets; display when we get results var that = this; var team = this.team; + + this.team.queue("searchtriggered").subscribe(function() { + var op = that.config.newsearch_opacity; + if (op !== undefined) { that.node.fadeTo(500, op); } + }); + team.queue("facets").subscribe(function(data) { + that.node.css('opacity', 1); that.node.addClass("active"); }); @@ -64,16 +71,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 })); });