Index: app/views/layouts/base.html.erb =================================================================== --- app/views/layouts/base.html.erb (revision 17727) +++ app/views/layouts/base.html.erb (working copy) @@ -58,8 +58,7 @@ -
-
+
<%= render_menu :account_menu -%> @@ -112,7 +111,6 @@
-
@@ -122,8 +120,8 @@ Powered by <%= link_to Redmine::Info.app_name, Redmine::Info.url %> © 2006-2018 Jean-Philippe Lang
+ - <%= call_hook :view_layouts_base_body_bottom %> Index: public/javascripts/responsive.js =================================================================== --- public/javascripts/responsive.js (revision 17727) +++ public/javascripts/responsive.js (working copy) @@ -2,7 +2,7 @@ function openFlyout() { $('html').addClass('flyout-is-active'); - $('#wrapper2').on('click', function(e){ + $('#wrapper').on('click', function(e){ e.preventDefault(); e.stopPropagation(); closeFlyout(); @@ -11,7 +11,7 @@ function closeFlyout() { $('html').removeClass('flyout-is-active'); - $('#wrapper2').off('click'); + $('#wrapper').off('click'); } Index: public/stylesheets/responsive.css =================================================================== --- public/stylesheets/responsive.css (revision 17727) +++ public/stylesheets/responsive.css (working copy) @@ -76,10 +76,6 @@ position: relative; overflow-x: hidden; /* hide horizontal overflow */ max-width: 100%; - } - - #wrapper, - #wrapper2 { margin: 0; } @@ -855,4 +851,3 @@ #login-form {width:100%; margin-top:2em;} } -