class Interview::HtmlHeaders

Public Instance Methods

build(b) click to toggle source
# File lib/interview/controls/html_headers.rb, line 4
def build(b)
  b << h.stylesheet_link_tag("application", media: "all", "data-turbolinks-track" => true)
  b << h.javascript_include_tag("application", "data-turbolinks-track" => true)
  b << h.csrf_meta_tags
  b.section style: 'meta', html_options: { name: 'viewport', content: "width=device-width, initial-scale=1, maximum-scale=1" }
end