1
0
mirror of https://github.com/kremalicious/krtmn.git synced 2024-12-22 01:03:28 +01:00

meta viewport

This commit is contained in:
Matthias Kretschmann 2012-02-27 08:36:04 +01:00
parent 51e43d001d
commit 042992f8d5

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">';
}