diff options
| -rw-r--r-- | docs/components/popovers.md | 4 | ||||
| -rw-r--r-- | docs/components/tooltips.md | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 5f26e4bbd..cc1b0fe2e 100644 --- a/docs/components/popovers.md +++ b/docs/components/popovers.md @@ -353,6 +353,10 @@ Toggles the ability for an element's popover to be shown or hidden. <td>hidden.bs.popover</td> <td>This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete).</td> </tr> + <tr> + <td>inserted.bs.popover</td> + <td>This event is fired after the <code>show.bs.popover</code> event when the tooltip template has been added to the DOM.</td> + </tr> </tbody> </table> diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md index a8b251c09..7c7f9af8b 100644 --- a/docs/components/tooltips.md +++ b/docs/components/tooltips.md @@ -329,6 +329,10 @@ Toggles the ability for an element's tooltip to be shown or hidden. <td>hidden.bs.tooltip</td> <td>This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete).</td> </tr> + <tr> + <td>inserted.bs.tooltip</td> + <td>This event is fired after the <code>show.bs.tooltip</code> event when the tooltip template has been added to the DOM.</td> + </tr> </tbody> </table> |
