tooltips/popover must be hidden before their corresponding element is removed from the DOM

This commit is contained in:
Peter Blazejewicz 2017-05-09 10:51:44 +02:00 committed by Johann-S
parent 6c5346e300
commit aa68ca3580
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ Things to know when using the popover plugin:
- Triggering popovers on hidden elements will not work. - Triggering popovers on hidden elements will not work.
- Popovers for `.disabled` or `disabled` elements must be triggered on a wrapper element. - Popovers for `.disabled` or `disabled` elements must be triggered on a wrapper element.
- When triggered from hyperlinks that span multiple lines, popovers will be centered. Use `white-space: nowrap;` on your `<a>`s to avoid this behavior. - When triggered from hyperlinks that span multiple lines, popovers will be centered. Use `white-space: nowrap;` on your `<a>`s to avoid this behavior.
- Popovers must be hidden before their corresponding elements have been removed from the DOM.
Got all that? Great, let's see how they work with some examples. Got all that? Great, let's see how they work with some examples.

View File

@ -23,6 +23,7 @@ Things to know when using the tooltip plugin:
- Triggering tooltips on hidden elements will not work. - Triggering tooltips on hidden elements will not work.
- Tooltips for `.disabled` or `disabled` elements must be triggered on a wrapper element. - Tooltips for `.disabled` or `disabled` elements must be triggered on a wrapper element.
- When triggered from hyperlinks that span multiple lines, tooltips will be centered. Use `white-space: nowrap;` on your `<a>`s to avoid this behavior. - When triggered from hyperlinks that span multiple lines, tooltips will be centered. Use `white-space: nowrap;` on your `<a>`s to avoid this behavior.
- Tooltips must be hidden before their corresponding elements have been removed from the DOM.
Got all that? Great, let's see how they work with some examples. Got all that? Great, let's see how they work with some examples.