diff options
author | Rémy Coutable <remy@rymai.me> | 2017-07-31 08:07:51 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-07-31 08:07:51 +0000 |
commit | acc0d8484505ed199fe8b9d2529d8f298d95bb80 (patch) | |
tree | ee82638df3d413eb162394ab278cace2fa52b85d /app/views/layouts/application.html.haml | |
parent | 15d00fc3d3cfb941a1904840259b719f8bbf4eeb (diff) | |
download | gitlab-ce-acc0d8484505ed199fe8b9d2529d8f298d95bb80.tar.gz |
Moves the Performance Bar to the top instead of being at the bottom
Diffstat (limited to 'app/views/layouts/application.html.haml')
-rw-r--r-- | app/views/layouts/application.html.haml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/views/layouts/application.html.haml b/app/views/layouts/application.html.haml index 38b95d11fd4..b53f382fa3d 100644 --- a/app/views/layouts/application.html.haml +++ b/app/views/layouts/application.html.haml @@ -1,8 +1,9 @@ !!! 5 -%html{ lang: I18n.locale, class: "#{page_class}" } +%html{ lang: I18n.locale, class: page_class } = render "layouts/head" %body{ class: @body_class, data: { page: body_data_page, project: "#{@project.path if @project}", group: "#{@group.path if @group}", find_file: find_file_path } } = render "layouts/init_auto_complete" if @gfm_form + = render 'peek/bar' - if show_new_nav? = render "layouts/header/new" - else @@ -10,5 +11,3 @@ = render 'layouts/page', sidebar: sidebar, nav: nav = yield :scripts_body - - = render 'peek/bar' |