diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-02 10:28:21 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2014-10-02 10:28:21 +0200 |
commit | 8d1137cd6dd3577f7630ff64a1d590786fb105ec (patch) | |
tree | 37b7001a3809502e9a92e60ad496cee0988ba60f | |
parent | 6c3ad0dab639203961f8b3b2e59ffe78e9a21581 (diff) | |
parent | 5f10ef7c0992b6d61e06114254f4f317cd44cd61 (diff) | |
download | gitlab-ce-8d1137cd6dd3577f7630ff64a1d590786fb105ec.tar.gz |
Merge pull request #7880 from cirosantilli/replace-erb-haml
Replace :erb filter with plain HAML.
-rw-r--r-- | app/views/layouts/_head.html.haml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/layouts/_head.html.haml b/app/views/layouts/_head.html.haml index 0c27f679dee..fa6aecb6661 100644 --- a/app/views/layouts/_head.html.haml +++ b/app/views/layouts/_head.html.haml @@ -18,8 +18,7 @@ = javascript_include_tag "application" = csrf_meta_tags = include_gon - :erb - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + %meta{name: 'viewport', content: 'width=device-width, initial-scale=1.0'} = render 'layouts/google_analytics' if extra_config.has_key?('google_analytics_id') = render 'layouts/piwik' if extra_config.has_key?('piwik_url') && extra_config.has_key?('piwik_site_id') |