]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update tooltips.md
authorXhmikosR <xhmikosr@gmail.com>
Tue, 10 Jul 2018 20:26:30 +0000 (23:26 +0300)
committerGitHub <noreply@github.com>
Tue, 10 Jul 2018 20:26:30 +0000 (23:26 +0300)
docs/4.1/components/tooltips.md

index 6e375feba9faf00892b1dd74e64ec9d279df996a..441aac4203ccdc0c7154bdf9783b5a8e7b43521c 100644 (file)
@@ -88,9 +88,10 @@ $('#example').tooltip(options)
 
 {% capture callout %}
 ##### Usage with overflow `auto` and `scroll`
-When the parent container has CSS property `overflow` set to values `auto|scroll` (for example when used within `.table-responsive`) the tooltip has weird flickering behaviour.
 
-The solution is to set `boundary` option to anything other than default value `'scrollParent'`. Eg. set it to `'window'`
+When the parent container has the CSS property `overflow` set to values `auto` or `scroll` (for example when used within `.table-responsive`) the tooltip has weird flickering behaviour.
+
+The solution is to set the `boundary` option to anything other than default value `'scrollParent'`. For example, set it to `'window'`:
 
 {% highlight js %}
 $('#example').tooltip({ boundary: 'window' })