diff --git a/src/main/webapp/scripts/project.js b/src/main/webapp/scripts/project.js index 4acd8feda..15ec85bd5 100644 --- a/src/main/webapp/scripts/project.js +++ b/src/main/webapp/scripts/project.js @@ -118,6 +118,10 @@ function initializeUI(uiState) { }); $(window).bind("resize", resizeAll); + + if (uiState.facets) { + Gridworks.update({ engineChanged: true }); + } } Gridworks.setTitle = function(status) { diff --git a/src/main/webapp/scripts/project/browsing-engine.js b/src/main/webapp/scripts/project/browsing-engine.js index 165a10586..755196f15 100644 --- a/src/main/webapp/scripts/project/browsing-engine.js +++ b/src/main/webapp/scripts/project/browsing-engine.js @@ -27,8 +27,6 @@ function BrowsingEngine(div, facetConfigs) { this._facets.push({ elmt: elmt, facet: facet }); } - - Gridworks.update({ engineChanged: true }); } }