diff --git a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js index 604588c75e0524a04f3359430e5eb058b7d33aff..edbcea8e94c49f67afb50d4abeae21d6a8bc47c2 100644 --- a/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js +++ b/plasmid/source/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js @@ -81,7 +81,7 @@ function MainController(profile) { var viewName = queryString.viewName; var viewData = queryString.viewData if(viewName && viewData) { - localReference.changeView(viewName, viewData); + localReference._changeView(viewName, viewData, false); } } window.addEventListener("popstate", function(e) {backButtonLogic(e);}); @@ -156,6 +156,9 @@ function MainController(profile) { // Main View Changer - Everything on the application rely on this method to alter the views, arg should be a string // this.changeView = function(newViewChange, arg) { + this._changeView(newViewChange, arg, true); + } + this._changeView = function(newViewChange, arg, shouldBePushToHistory) { // // Dirty forms management, to avoid loosing changes. // @@ -396,9 +399,11 @@ function MainController(profile) { // // Permanent URLs // - var menuUniqueId = this.sideMenu.getCurrentNodeId(); - var url = Util.getURLFor(menuUniqueId, newViewChange, arg); - history.pushState(null, "", url); //History Push State + if (shouldBePushToHistory) { + var menuUniqueId = this.sideMenu.getCurrentNodeId(); + var url = Util.getURLFor(menuUniqueId, newViewChange, arg); + history.pushState(null, "", url); //History Push State + } // // Refresh Functionality //