From 8add358598355ffee140cd0156051c053018c65c Mon Sep 17 00:00:00 2001 From: Jason Skomorowski Date: Thu, 9 Oct 2014 15:02:28 -0400 Subject: [PATCH] Pass query and "field" to termlist widget MKWS-284 --- src/mkws-widget-termlists.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mkws-widget-termlists.js b/src/mkws-widget-termlists.js index 43737c1..4052251 100644 --- a/src/mkws-widget-termlists.js +++ b/src/mkws-widget-termlists.js @@ -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 })); }); -- 1.7.10.4