Fix reset on text search facet

This commit is contained in:
Owen Stephens 2017-11-14 14:37:16 +00:00
parent 135052d033
commit 25dd347123

View File

@ -159,6 +159,8 @@ TextSearchFacet.prototype.render = function() {
TextSearchFacet.prototype._reset = function() {
this._query = null;
this._config.mode = "text";
this._config.caseSensitive = false;
this._elmts.input.val([]);
this._elmts.caseSensitiveCheckbox.prop("checked", false);
this._elmts.regexCheckbox.prop("checked", false);