meta viewport

This commit is contained in:
Matthias Kretschmann 2012-02-27 08:36:04 +01:00
parent 51e43d001d
commit 042992f8d5
1 changed files with 6 additions and 0 deletions

View File

@ -45,6 +45,12 @@ function krtmn_touch_icons() {
}
// custom viewport
yourls_add_action( 'html_head', 'krtmn_viewport' );
function krtmn_viewport() {
echo '<meta name="viewport" content="width=device-width">';
}