You are here

function layout_responsive_html_head_alter in Layout 7

File

plugins/layouts/responsive.inc, line 191

Code

function layout_responsive_html_head_alter(&$head_elements) {
  $head_elements['viewport'] = array(
    '#type' => 'html_tag',
    '#tag' => 'meta',
    '#attributes' => array(
      'name' => 'viewport',
      'content' => 'width=device-width,initial-scale=1',
    ),
  );
}