mirror of
https://github.com/moodle/moodle.git
synced 2025-03-24 09:30:17 +01:00
MDL-60414 theme_boost: bootstrap dropdown menu html spec char rendering
This commit is contained in:
parent
446d8483a3
commit
000355f223
@ -2,12 +2,12 @@
|
||||
{{#haschildren}}
|
||||
<li class="dropdown nav-item">
|
||||
<a class="dropdown-toggle nav-link" id="drop-down-{{uniqid}}" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#">
|
||||
{{text}}
|
||||
{{{text}}}
|
||||
</a>
|
||||
<div class="dropdown-menu" aria-labelledby="drop-down-{{uniqid}}">
|
||||
{{#children}}
|
||||
{{^divider}}
|
||||
<a class="dropdown-item" href="{{{url}}}" {{#title}}title="{{{title}}}"{{/title}}>{{text}}</a>
|
||||
<a class="dropdown-item" href="{{{url}}}" {{#title}}title="{{{title}}}"{{/title}}>{{{text}}}</a>
|
||||
{{/divider}}
|
||||
{{#divider}}
|
||||
<div class="dropdown-divider"></div>
|
||||
@ -18,7 +18,7 @@
|
||||
{{/haschildren}}
|
||||
{{^haschildren}}
|
||||
<li class="nav-item">
|
||||
<a class="nav-item nav-link" href="{{{url}}}" {{#title}}title="{{{title}}}"{{/title}}>{{text}}</a>
|
||||
<a class="nav-item nav-link" href="{{{url}}}" {{#title}}title="{{{title}}}"{{/title}}>{{{text}}}</a>
|
||||
</li>
|
||||
{{/haschildren}}
|
||||
{{/divider}}
|
||||
|
Loading…
x
Reference in New Issue
Block a user