aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorGabriele Cirulli <[email protected]>2013-08-14 23:51:26 +0200
committerGabriele Cirulli <[email protected]>2013-08-14 23:51:26 +0200
commitfb71f402456b27b66184acbd341e8119188c3c20 (patch)
treefeaa927ac2215397bb44ef20852205937e03e0fc /css.html
parenta3b279c556560079a84c25a631ebcec8fcefe38e (diff)
downloadbootstrap-fb71f402456b27b66184acbd341e8119188c3c20.tar.xz
bootstrap-fb71f402456b27b66184acbd341e8119188c3c20.zip
tweak note about zoom disabled on mobile
Diffstat (limited to 'css.html')
-rw-r--r--css.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/css.html b/css.html
index 45fc5d646..045be7876 100644
--- a/css.html
+++ b/css.html
@@ -30,7 +30,7 @@ base_url: "../"
{% highlight html %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% endhighlight %}
- <p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> to the viewport meta tag. This way, your mobile users will only be able to scroll, and it will result in your app feeling a bit more like the rest of the applications that you could find on the device.</p>
+ <p>You can disable zooming capabilities on mobile devices by adding <code>user-scalable=no</code> to the viewport meta tag. This disables zooming, meaning users are only able to scroll, and results in your site feeling a bit more like a native application. Overall we don't recommend this on every site, so use caution!</p>
{% highlight html %}
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
{% endhighlight %}