Added the missing title attribute

This commit is contained in:
Antonin 2016-08-04 22:28:05 +02:00
parent a34b767f8e
commit 9eb55db522
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@
<tr>
<th role="presentation"></th>
{foreach $slots as $id=>$slot}
<th class="bg-info" id="C{$id}">{$slot->title|markdown}</th>
<th class="bg-info" id="C{$id}" title="{$slot->title|markdown:true}">{$slot->title|markdown}</th>
{/foreach}
<th></th>
</tr>

View File

@ -76,7 +76,7 @@
{$slots_raw = array()}
{foreach $slots as $slot}
{foreach $slot->moments as $id=>$moment}
<th colspan="1" class="bg-info" id="H{$headersDCount}">{$moment|html}</th>
<th colspan="1" class="bg-info" id="H{$headersDCount}" title="{$moment|html}">{$moment|html}</th>
{append var='headersH' value=$headersDCount}
{$headersDCount = $headersDCount+1}
{$slots_raw[] = $slot->day|date_format:$date_format.txt_full|cat:' - '|cat:$moment}