Skip to content
Snippets Groups Projects
Commit 8dbfa009 authored by juanf's avatar juanf
Browse files

SSDM-5538 : Fix glitch with back-forward button due to drop children containers

SVN: 38698
parent 24cd16bf
No related branches found
No related tags found
No related merge requests found
...@@ -618,17 +618,17 @@ function MainController(profile) { ...@@ -618,17 +618,17 @@ function MainController(profile) {
} }
if(this.views.header) { if(this.views.header) {
toPush.header = this.views.header.children(); toPush.header = this.views.header;
toPush.header.detach(); toPush.header.detach();
} }
if(this.views.content) { if(this.views.content) {
toPush.content = this.views.content.children(); toPush.content = this.views.content;
toPush.content.detach(); toPush.content.detach();
} }
if(this.views.auxContent) { if(this.views.auxContent) {
toPush.auxContent = this.views.auxContent.children(); toPush.auxContent = this.views.auxContent;
toPush.auxContent.detach(); toPush.auxContent.detach();
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment