Revise markup for navbar toggle.
1. Current BS4 documentation uses an entity for the navbar toggle instead of styled span tags. 2. Change navbar toggle class to match documentation. http://v4-alpha.getbootstrap.com/components/navbar/
This commit is contained in:
parent
995bf67d56
commit
b2ef50853f
|
@ -39,11 +39,8 @@
|
|||
|
||||
<!-- .navbar-toggle is used as the toggle for collapsed navbar content -->
|
||||
|
||||
<button class="navbar-toggle hidden-sm-up" type="button" data-toggle="collapse" data-target=".exCollapsingNavbar">
|
||||
<span class="sr-only">Toggle navigation</span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target=".exCollapsingNavbar" aria-controls="exCollapsingNavbar" aria-expanded="false" aria-label="Toggle navigation">
|
||||
☰
|
||||
</button>
|
||||
|
||||
<!-- Your site title as branding in the menu -->
|
||||
|
|
Reference in New Issue