]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Changed ```popover``` to ```tooltip``` in docs
authorMaciej Kubień <mkubien@gmail.com>
Fri, 13 Jan 2023 12:43:44 +0000 (13:43 +0100)
committerMark Otto <otto@github.com>
Sun, 15 Jan 2023 18:47:05 +0000 (10:47 -0800)
Changed ```popover``` to ```tooltip``` in tooltip component docs page.

site/content/docs/5.3/components/tooltips.md

index 7742c6f20cb18055fede2efb52dd30a60b7d83aa..77a69ff034f68400097b01f297a5e3672e5461ad 100644 (file)
@@ -267,7 +267,7 @@ tooltip.setContent({ '.tooltip-inner': 'another title' })
 ```
 
 {{< callout info >}}
-The `setContent` method accepts an `object` argument, where each property-key is a valid `string` selector within the popover template, and each related property-value can be `string` | `element` | `function` | `null`
+The `setContent` method accepts an `object` argument, where each property-key is a valid `string` selector within the tooltip template, and each related property-value can be `string` | `element` | `function` | `null`
 {{< /callout >}}
 
 ### Events
@@ -276,10 +276,10 @@ The `setContent` method accepts an `object` argument, where each property-key is
 | Event | Description |
 | --- | --- |
 | `hide.bs.tooltip` | This event is fired immediately when the `hide` instance method has been called. |
-| `hidden.bs.tooltip` | This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete). |
+| `hidden.bs.tooltip` | This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete). |
 | `inserted.bs.tooltip` | This event is fired after the `show.bs.tooltip` event when the tooltip template has been added to the DOM. |
 | `show.bs.tooltip` | This event fires immediately when the `show` instance method is called. |
-| `shown.bs.tooltip` | This event is fired when the popover has been made visible to the user (will wait for CSS transitions to complete). |
+| `shown.bs.tooltip` | This event is fired when the tooltip has been made visible to the user (will wait for CSS transitions to complete). |
 {{< /bs-table >}}
 
 ```js