Remove accidental 'false' in 20121b9b9

This commit is contained in:
Dan Stillman 2017-05-12 06:15:50 -04:00
parent 20121b9b97
commit a92d469466

View file

@ -268,7 +268,7 @@
// Otherwise just update based on visibility
else {
// If only a few tags, regenerate buttons from scratch
if (false && this.filterToScope && Object.keys(this.scope).length <= 100) {
if (this.filterToScope && Object.keys(this.scope).length <= 100) {
// If full set is currently displayed, store it for later
if (!this._tagsDiv) {
this._tagsDiv = tagsBox.firstChild;