diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-01-17 14:41:05 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-01-17 14:41:05 +0100 |
commit | 3e803b5e366563e384abde0d6e6cb6eb010bf914 (patch) | |
tree | bf1a49eab475dc86f371892de82e8c8c063ae88e /core/templates/layout.base.php | |
parent | 1d380a201191c12c7b860b2a80a5db12d6bf781d (diff) | |
download | nextcloud-server-3e803b5e366563e384abde0d6e6cb6eb010bf914.tar.gz nextcloud-server-3e803b5e366563e384abde0d6e6cb6eb010bf914.zip |
restrict zooming on mobile devices for the publicly accessible, optimized pages
Diffstat (limited to 'core/templates/layout.base.php')
-rw-r--r-- | core/templates/layout.base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 8cd237deea1..bae52a73234 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -11,7 +11,7 @@ <?php p($theme->getTitle()); ?> </title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"> <link rel="shortcut icon" href="<?php print_unescaped(image_path('', 'favicon.png')); ?>" /> <link rel="apple-touch-icon-precomposed" href="<?php print_unescaped(image_path('', 'favicon-touch.png')); ?>" /> <?php foreach ($_['cssfiles'] as $cssfile): ?> |