From 50b9c7339a25265f42130907ca33684e74126a2a Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 17 Aug 2013 17:38:53 -0700 Subject: [PATCH 1/3] comma & in "Modals and mobile devices" docs --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index 5da537393e..6c3912e987 100644 --- a/getting-started.html +++ b/getting-started.html @@ -375,7 +375,7 @@ if (navigator.userAgent.match(/IEMobile\/10\.0/)) {

Modals and mobile devices

Support for overflow: hidden on the <body> element is quite limited in iOS and Android. To that end, when you scroll past the top or bottom of a modal in either of those devices' browsers, the <body> content will begin to scroll.

-

Also, note that if you're using inputs in your modal – iOS has a rendering bug which doesn't update the position of fixed elements when the virtual keyboard is triggered. There are a few work arounds for this including transforming your elements to position absolute or invoking a timer on focus to try to correct the positioning manually. This is not handled by Bootstrap, so it is up to you to decide which solution is best for your application.

+

Also, note that if you're using inputs in your modal – iOS has a rendering bug which doesn't update the position of fixed elements when the virtual keyboard is triggered. There are a few work arounds for this, including transforming your elements to position: absolute or invoking a timer on focus to try to correct the positioning manually. This is not handled by Bootstrap, so it is up to you to decide which solution is best for your application.

Browser zooming

Page zooming inevitably presents rendering artifacts in some components, both in Bootstrap and the rest of the web. Depending on the issue, we may be able to fix it (search first and then open an issue if need be). However, we tend to ignore these as they often have no direct solution other than hacky workarounds.

From cc3077ac17eac65837b81ec0d289c3913383c9a0 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 17 Aug 2013 17:41:47 -0700 Subject: [PATCH 2/3] improve grammar in "Disabling responsiveness" docs --- getting-started.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started.html b/getting-started.html index 6c3912e987..fda396a9e1 100644 --- a/getting-started.html +++ b/getting-started.html @@ -254,7 +254,7 @@ bootstrap/ -

Don't want your site or application to be scale on different device? With a little bit of work, you can disable the responsive features of Bootstrap so that mobile users see your full desktop-version site.

+

Don't want your site or application to be scaled on different devices? With a little bit of work, you can disable the responsive features of Bootstrap so that mobile users see your full desktop-version site.

Steps to disable responsive views

To disable responsive features, follow these steps. See it in action in the modified template below.

From 405df13044adcbb5925159726a0b64918c8e263a Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Sat, 17 Aug 2013 17:44:42 -0700 Subject: [PATCH 3/3] fix typo in JS docs --- javascript.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript.html b/javascript.html index 1d4604afc4..c9228c2115 100644 --- a/javascript.html +++ b/javascript.html @@ -1104,7 +1104,7 @@ $('#myTooltip').on('hidden.bs.tooltip', function () { string | false false -

Appends the popover to a specific element. Example: container: 'body'. This option is particularly useful inthat it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize.

+

Appends the popover to a specific element. Example: container: 'body'. This option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize.