From 12099f341d4d836116b636796a8e4af3306d3828 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 6 Oct 2015 17:00:32 +0100 Subject: [PATCH] Last part of MKWS-413. widget.autosearch no longer attempts to pass individual arguments into team.newSearch. (It can't -- the variables are undefined.) --- src/mkws-widget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mkws-widget.js b/src/mkws-widget.js index 94cd6f6..566f604 100644 --- a/src/mkws-widget.js +++ b/src/mkws-widget.js @@ -114,7 +114,7 @@ mkws.makeWidget = function($, team, type, node) { // them in in the subclass, as widget.autosearch is called in // the superclass, before the subclass fiddles with the // configuration. - that.team.newSearch(that, query, sortOrder, maxrecs, perpage, limit, targets, targetfilter); + that.team.newSearch(that, query); }); } }; -- 1.7.10.4