aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej KubieÅ„ <[email protected]>2023-01-13 13:43:44 +0100
committerMark Otto <[email protected]>2023-01-15 10:47:05 -0800
commit934d7a0c1a16234194e014c0560f8fa457506ed8 (patch)
tree7df67399db785c0f4d61cb014a926249081001a1
parent8865b469c353db7b94e07c13abbfdf7d27858386 (diff)
downloadbootstrap-934d7a0c1a16234194e014c0560f8fa457506ed8.tar.xz
bootstrap-934d7a0c1a16234194e014c0560f8fa457506ed8.zip
Changed ```popover``` to ```tooltip``` in docs
Changed ```popover``` to ```tooltip``` in tooltip component docs page.
-rw-r--r--site/content/docs/5.3/components/tooltips.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/content/docs/5.3/components/tooltips.md b/site/content/docs/5.3/components/tooltips.md
index 7742c6f20..77a69ff03 100644
--- a/site/content/docs/5.3/components/tooltips.md
+++ b/site/content/docs/5.3/components/tooltips.md
@@ -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