]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Change .in to .show (#21500)
authorQuy <quy@fluxbb.org>
Sun, 1 Jan 2017 20:00:55 +0000 (12:00 -0800)
committerMark Otto <markd.otto@gmail.com>
Sun, 1 Jan 2017 20:00:55 +0000 (12:00 -0800)
docs/components/collapse.md

index 11017c234df7624b4d0bd25dae914f27bb5c0a20..f48efd9cc40d7a69caf17ecb086a4444744b6d9b 100644 (file)
@@ -92,7 +92,7 @@ Extend the default collapse behavior to create an accordion.
 
 ## Accessibility
 
-Be sure to add `aria-expanded` to the control element. This attribute explicitly defines the current state of the collapsible element to screen readers and similar assistive technologies. If the collapsible element is closed by default, it should have a value of `aria-expanded="false"`. If you've set the collapsible element to be open by default using the `in` class, set `aria-expanded="true"` on the control instead. The plugin will automatically toggle this attribute based on whether or not the collapsible element has been opened or closed.
+Be sure to add `aria-expanded` to the control element. This attribute explicitly defines the current state of the collapsible element to screen readers and similar assistive technologies. If the collapsible element is closed by default, it should have a value of `aria-expanded="false"`. If you've set the collapsible element to be open by default using the `show` class, set `aria-expanded="true"` on the control instead. The plugin will automatically toggle this attribute based on whether or not the collapsible element has been opened or closed.
 
 Additionally, if your control element is targeting a single collapsible element – i.e. the `data-target` attribute is pointing to an `id` selector – you may add an additional `aria-controls` attribute to the control element, containing the `id` of the collapsible element. Modern screen readers and similar assistive technologies make use of this attribute to provide users with additional shortcuts to navigate directly to the collapsible element itself.