Loads GFM once for per page

#22827
This commit is contained in:
Phil Hughes 2016-10-13 08:34:35 +01:00
parent 456149345b
commit 270434f737
3 changed files with 3 additions and 3 deletions

View File

@ -116,6 +116,7 @@ v 8.13.0 (unreleased)
v 8.12.7
- Use gitlab-markup gem instead of github-markup to fix `.rst` file rendering. !6659
- Fix GFM autocomplete setup being called several times
v 8.12.6
- Update mailroom to 0.8.1 in Gemfile.lock !6814

View File

@ -11,3 +11,4 @@
= render 'layouts/page', sidebar: sidebar, nav: nav
= yield :scripts_body
= render "layouts/init_auto_complete" if @gfm_form

View File

@ -1,3 +1,4 @@
- @gfm_form = true
- supports_slash_commands = local_assigns.fetch(:supports_slash_commands, false)
.zen-backdrop
- classes << ' js-gfm-input js-autosize markdown-area'
@ -7,6 +8,3 @@
= text_area_tag attr, nil, class: classes, placeholder: placeholder
%a.zen-control.zen-control-leave.js-zen-leave{ href: "#" }
= icon('compress')
- content_for :scripts_body do
= render "layouts/init_auto_complete" if current_user && (@target_project || @project)