Fixed range facet to restore non-numeric, blank, and error selections from its ui state properly.

git-svn-id: http://google-refine.googlecode.com/svn/trunk@270 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
David Huynh 2010-03-10 08:15:01 +00:00
parent f02fd3f5c3
commit 432e88a23b

View File

@ -5,9 +5,9 @@ function RangeFacet(div, config, options) {
this._from = ("from" in this._config) ? this._config.from : null; this._from = ("from" in this._config) ? this._config.from : null;
this._to = ("to" in this._config) ? this._config.to : null; this._to = ("to" in this._config) ? this._config.to : null;
this._selectNonNumeric = true; this._selectNonNumeric = ("selectNonNumeric" in this._config) ? this._config.selectNonNumeric : true;
this._selectBlank = true; this._selectBlank = ("selectBlank" in this._config) ? this._config.selectBlank : true;
this._selectError = true; this._selectError = ("selectError" in this._config) ? this._config.selectError : true;
this._nonNumericCount = 0; this._nonNumericCount = 0;
this._blankCount = 0; this._blankCount = 0;