diff --git a/app/views/layouts/new_application.html.haml b/app/views/layouts/new_application.html.haml index 19c5bc700..3e31bd2f7 100644 --- a/app/views/layouts/new_application.html.haml +++ b/app/views/layouts/new_application.html.haml @@ -1,8 +1,8 @@ %html %head - %meta{ "http-equiv" => "Content-Type", :content => "text/html; charset=UTF-8" } - %meta{ "http-equiv" => "X-UA-Compatible", :content => "IE=edge" } - %meta{ :name => "turbolinks-cache-control", :content => "no-cache" } + %meta{ "http-equiv": "Content-Type", content: "text/html; charset=UTF-8" } + %meta{ "http-equiv": "X-UA-Compatible", content: "IE=edge" } + %meta{ name: "turbolinks-cache-control", content: "no-cache" } %meta{ name: "viewport", content: "width=device-width, initial-scale=1" } = csrf_meta_tags = action_cable_meta_tag @@ -14,12 +14,12 @@ = favicon_link_tag(image_url("favicons/32x32.png"), type: "image/png", sizes: "32x32") = favicon_link_tag(image_url("favicons/96x96.png"), type: "image/png", sizes: "96x96") - = stylesheet_link_tag "new_design/new_application", :media => "all", "data-turbolinks-track" => true - = stylesheet_link_tag "print", :media => "print", "data-turbolinks-track" => true + = stylesheet_link_tag "new_design/new_application", media: "all", "data-turbolinks-track": true + = stylesheet_link_tag "print", media: "print", "data-turbolinks-track": true %body - = render :partial => "layouts/support_navigator_banner" - = render :partial => "layouts/ie_lt_10" + = render partial: "layouts/support_navigator_banner" + = render partial: "layouts/ie_lt_10" #beta{ class:(Rails.env == "production" ? "" : "beta_staging") } - if Rails.env == "production" Beta @@ -30,14 +30,14 @@ = render partial: "layouts/flash_messages" = yield - = render :partial => "layouts/switch_devise_profile_module" + = render partial: "layouts/switch_devise_profile_module" = render partial: "layouts/new_footer" = render partial: "layouts/google_analytics" = render partial: "layouts/mailjet_newsletter" - = javascript_include_tag "application", "data-turbolinks-track" => true + = javascript_include_tag "application", "data-turbolinks-track": true = yield :charts_js - if Rails.env == "test" - %script{ :type => "text/javascript" } + %script{ type: "text/javascript" } (typeof jQuery !== "undefined") && (jQuery.fx.off = true);