Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Maxime Piton <louismaxime.piton@orange.com>2022-08-31 16:50:54 +0300
committerGitHub <noreply@github.com>2022-08-31 16:50:54 +0300
commit29332a954f86671d39f60007fb0c2ea633731e88 (patch)
treecc1d227bc0cab816c5b378bffe5a85c957406a49 /site/content/docs/5.2/components/collapse.md
parentaf1bd974bba7f6e7f90c5ed3f42738bd101926cb (diff)
Docs: Fix js options to what is really inside js (#37019)
Diffstat (limited to 'site/content/docs/5.2/components/collapse.md')
-rw-r--r--site/content/docs/5.2/components/collapse.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/content/docs/5.2/components/collapse.md b/site/content/docs/5.2/components/collapse.md
index 8d775e95d4..781998aafa 100644
--- a/site/content/docs/5.2/components/collapse.md
+++ b/site/content/docs/5.2/components/collapse.md
@@ -146,7 +146,7 @@ const collapseList = [...collapseElementList].map(collapseEl => new bootstrap.Co
{{< bs-table "table" >}}
| Name | Type | Default | Description |
| --- | --- | --- | --- |
-`parent` | selector, jQuery object, DOM element | `false` | If parent is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior - this is dependent on the `card` class). The attribute has to be set on the target collapsible area. |
+`parent` | selector, DOM element | `null` | If parent is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior - this is dependent on the `card` class). The attribute has to be set on the target collapsible area. |
`toggle` | boolean | `true` | Toggles the collapsible element on invocation |
{{< /bs-table >}}