diff --git a/client/src/views/admin/layouts/index.js b/client/src/views/admin/layouts/index.js index c0a7c7103b..541d8e409e 100644 --- a/client/src/views/admin/layouts/index.js +++ b/client/src/views/admin/layouts/index.js @@ -219,7 +219,13 @@ define('views/admin/layouts/index', 'view', function (Dep) { }, navigate: function (scope, type) { - this.getRouter().navigate('#Admin/layouts/scope=' + scope + '&type=' + type, {trigger: false}); + var url = '#Admin/layouts/scope=' + scope + '&type=' + type; + + if (this.em) { + url += '&em=true'; + } + + this.getRouter().navigate(url, {trigger: false}); }, renderDefaultPage: function () {