From 8dbfa00947b9223d2e63a8a3b762709812c14157 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Mon, 4 Sep 2017 09:53:58 +0000 Subject: [PATCH] SSDM-5538 : Fix glitch with back-forward button due to drop children containers SVN: 38698 --- .../webapps/eln-lims/html/js/controllers/MainController.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js index dc0fc9259bf..89e859a4f31 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/as/webapps/eln-lims/html/js/controllers/MainController.js @@ -618,17 +618,17 @@ function MainController(profile) { } if(this.views.header) { - toPush.header = this.views.header.children(); + toPush.header = this.views.header; toPush.header.detach(); } if(this.views.content) { - toPush.content = this.views.content.children(); + toPush.content = this.views.content; toPush.content.detach(); } if(this.views.auxContent) { - toPush.auxContent = this.views.auxContent.children(); + toPush.auxContent = this.views.auxContent; toPush.auxContent.detach(); } } -- GitLab