add tooltip title to common_tabs

This commit is contained in:
friendica 2012-04-27 19:47:52 -07:00
parent e356920e14
commit 3bb06cc3e4
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<ul class="tabs"> <ul class="tabs">
{{ for $tabs as $tab }} {{ for $tabs as $tab }}
<li><a href="$tab.url" class="tab button $tab.sel">$tab.label</a></li> <li><a href="$tab.url" class="tab button $tab.sel"{{ if $tab.title }} title="$tab.title"{{ endif }}>$tab.label</a></li>
{{ endfor }} {{ endfor }}
</ul> </ul>