From 31a21044e021a591d0e9d6eba9ee17d2000e17ac Mon Sep 17 00:00:00 2001 From: Johann-S <johann.servoire@gmail.com> Date: Fri, 7 Apr 2017 14:23:26 +0200 Subject: [PATCH] Documentation - Add inserted event for Tooltip and Popover --- docs/components/popovers.md | 4 ++++ docs/components/tooltips.md | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docs/components/popovers.md b/docs/components/popovers.md index 5f26e4bbd3..cc1b0fe2e8 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 a8b251c09a..7c7f9af8b0 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> -- GitLab