-
Notifications
You must be signed in to change notification settings - Fork 28
Open
Description
I was checking the code of the dropdowns and it's showing like this
<li class="has_nested" id="example">
<a href="#">Example</a>
<ul>
<li id="model1"><a href="/admin/">Model1</a></li>
<li id="model2"><a href="/admin/alumno_induccions">Model2</a></li>
</ul>
</li>
So, it should be like this:
<li class="dropdown" id="example"> <-notice the class
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button">Example</a> <-- added css class, data-toggle and role
<ul class="dropdown-menu"> <-- notice the class
<li id="model1"><a href="/admin/">Model1</a></li>
<li id="model2"><a href="/admin/alumno_induccions">Model2</a></li>
</ul>
</li>
But I only modified that using the web inspector, How can I make permanent?
vinhnglx
Metadata
Metadata
Assignees
Labels
No labels