aboutsummaryrefslogtreecommitdiff
path: root/docs/components/scrollspy.md
diff options
context:
space:
mode:
authorHeinrich Fenkart <[email protected]>2015-08-21 00:34:16 +0200
committerHeinrich Fenkart <[email protected]>2015-08-21 00:34:16 +0200
commitff5218a08ed887601e930421d40be8cd424bc127 (patch)
treedab6ad5fcd892aa6a388430bfa92faf283b57e6c /docs/components/scrollspy.md
parent70e4c72066831c5587752920eb4e666e070ea1a3 (diff)
parent73a88dbe8649758e20464c60cfd568e4828d6c27 (diff)
downloadbootstrap-ff5218a08ed887601e930421d40be8cd424bc127.tar.xz
bootstrap-ff5218a08ed887601e930421d40be8cd424bc127.zip
Merge pull request #17172 from twbs/v4-docs-dropdowns
Docs: Update all dropdowns to new HTML structure
Diffstat (limited to 'docs/components/scrollspy.md')
-rw-r--r--docs/components/scrollspy.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/components/scrollspy.md b/docs/components/scrollspy.md
index 26d0dd433..2cec07f90 100644
--- a/docs/components/scrollspy.md
+++ b/docs/components/scrollspy.md
@@ -21,12 +21,12 @@ The ScrollSpy plugin is for automatically updating nav targets based on scroll p
<li class="nav-item"><a class="nav-link" href="#mdo">@mdo</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Dropdown</a>
- <ul class="dropdown-menu">
- <li><a class="dropdown-item" href="#one">one</a></li>
- <li><a class="dropdown-item" href="#two">two</a></li>
- <li role="separator" class="dropdown-divider"></li>
- <li><a class="dropdown-item" href="#three">three</a></li>
- </ul>
+ <div class="dropdown-menu">
+ <a class="dropdown-item" href="#one">one</a>
+ <a class="dropdown-item" href="#two">two</a>
+ <div role="separator" class="dropdown-divider"></div>
+ <a class="dropdown-item" href="#three">three</a>
+ </div>
</li>
</ul>
</nav>