b144bdfc by Adam Heath

Send hidden but checked items to solr; there's no way to know ahead of

time if the result set will have changed, where the currently hidden
item becomes valid.
1 parent 1107153b
...@@ -450,7 +450,7 @@ define(function(require) { ...@@ -450,7 +450,7 @@ define(function(require) {
450 facetValues.push(rangeFormatter(queryMin, queryMax)); 450 facetValues.push(rangeFormatter(queryMin, queryMax));
451 } 451 }
452 this.get('items').each(function(item, index) { 452 this.get('items').each(function(item, index) {
453 if (!item.get('hidden') && item.get('checked')) { 453 if (item.get('checked')) {
454 facetValues.push(valueFormatter(item)); 454 facetValues.push(valueFormatter(item));
455 } 455 }
456 }); 456 });
......