Created
June 10, 2015 22:42
-
-
Save segovia94/734f6e2f957a1b69f140 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//force IE to render in latest version or use Google chrome | |
$meta_edge = array( | |
'#type' => 'html_tag', | |
'#tag' => 'meta', | |
'#attributes' => array( | |
'http-equiv' => 'X-UA-Compatible', | |
'content' => 'IE=edge,chrome=1', | |
) | |
); | |
//Add header meta tag to head | |
drupal_add_html_head( $meta_edge, 'meta_edge' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment