From: Mike Taylor Date: Fri, 7 Nov 2014 16:14:33 +0000 (+0000) Subject: Do not bother assigning to output.queryWidth, as this value is never used. X-Git-Tag: 1.0.0~50 X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=commitdiff_plain;h=557aeb368deb630ab4dd70140a1425f8ba67c8fc Do not bother assigning to output.queryWidth, as this value is never used. We recommend the use of CSS instead. See MKWS-330. --- diff --git a/src/mkws-widget-main.js b/src/mkws-widget-main.js index fae978d..70c45e2 100644 --- a/src/mkws-widget-main.js +++ b/src/mkws-widget-main.js @@ -220,7 +220,6 @@ mkws.registerWidgetType('switch', function() { mkws.registerWidgetType('search', function() { var output = {}; output.team = this.team.name(); - output.queryWidth = this.config.query_width; var template = this.team.loadTemplate(this.config.template || "search"); this.node.html(template(output)); });