doc/lib: Apply role and css class toc to the toc

refs #6630
This commit is contained in:
Eric Lippmann 2015-02-11 12:58:31 +01:00
parent e2b34023cd
commit 0b1a9c1659
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ class TocRenderer extends Renderer
*/
public function beginIteration()
{
$this->content[] = '<nav><ul>';
$this->content[] = '<nav role="navigation"><ul class="toc">';
}
/**
@ -54,7 +54,7 @@ class TocRenderer extends Renderer
*/
public function beginChildren()
{
$this->content[] = '<ul>';
$this->content[] = '<ul class="toc">';
}
/**