Unverified Commit e9ec13e9 authored by XhmikosR's avatar XhmikosR Committed by GitHub
Browse files

Update tooltips.md

parent 591725e8
3 merge requests!28721Hot test,!27561Adds font-weight-medium to font weight classes,!26844Update tooltip docs to explain potential overflow boundary issue
Showing with 3 additions and 2 deletions
+3 -2
......@@ -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' })
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment