From 32296f45fa8956fee2babcd28ee85080c68cb338 Mon Sep 17 00:00:00 2001 From: nathangray Date: Fri, 15 Dec 2017 10:29:35 -0700 Subject: [PATCH] Fix typo breaking the setting of autocomplete params --- api/js/etemplate/et2_widget_taglist.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/js/etemplate/et2_widget_taglist.js b/api/js/etemplate/et2_widget_taglist.js index b3be0d080f..15ae39d4d7 100644 --- a/api/js/etemplate/et2_widget_taglist.js +++ b/api/js/etemplate/et2_widget_taglist.js @@ -484,7 +484,7 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR { return_value = []; } - + // Turn on local filtering, or trust server to do it cfg.mode = typeof return_value === 'string' ? 'remote' : 'local'; @@ -572,9 +572,9 @@ var et2_taglist = (function(){ "use strict"; return et2_selectbox.extend([et2_IR */ set_autocomplete_params: function(_params) { - if (this.options.autocomplate_params != _params) + if (this.options.autocomplete_params != _params) { - this.options.autocomplate_params = _params; + this.options.autocomplete_params = _params; if (this.taglist) this.taglist.setDataUrlParams(_params); }