diff --git a/features/searchPane/dataTables.searchPane.js b/features/searchPane/dataTables.searchPane.js index 347e659..0e578fd 100644 --- a/features/searchPane/dataTables.searchPane.js +++ b/features/searchPane/dataTables.searchPane.js @@ -154,6 +154,16 @@ // Don't show the pane if there isn't enough variance in the data if (this._variance(bins) < this.c.threshold) { + this + .dom + .container + .children() + .map(function() { + if ($(this).data('column') == idx) { + return this; + } + }) + .remove(); return; }