Skip to content

Commit

Permalink
Merge branch 'MDL-62143-master' of git://github.com/damyon/moodle
Browse files Browse the repository at this point in the history
  • Loading branch information
junpataleta committed Mar 5, 2019
2 parents 89d1238 + f13f5ab commit ba77f20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions lib/outputrenderers.php
Original file line number Diff line number Diff line change
Expand Up @@ -3437,6 +3437,9 @@ protected function render_breadcrumb_navigation_node(breadcrumb_navigation_node
if ($item->hidden) {
$attributes['class'] = 'dimmed_text';
}
if ($item->is_last()) {
$attributes['aria-current'] = 'page';
}
$content = html_writer::tag('span', $content, array('itemprop' => 'title'));
$content = html_writer::link($item->action, $content, $attributes);

Expand Down
2 changes: 1 addition & 1 deletion lib/templates/navbar.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
{{#get_items}}
{{#has_action}}
<li class="breadcrumb-item{{#is_hidden}} dimmed_text{{/is_hidden}}">
<a href="{{{action}}}" {{#get_title}}title="{{get_title}}"{{/get_title}}>{{{get_content}}}</a>
<a href="{{{action}}}" {{#is_last}}aria-current="page"{{/is_last}} {{#get_title}}title="{{get_title}}"{{/get_title}}>{{{get_content}}}</a>
</li>
{{/has_action}}
{{^has_action}}
Expand Down

0 comments on commit ba77f20

Please sign in to comment.