1
0
mirror of https://github.com/sismics/docs.git synced 2025-12-20 21:21:55 +00:00

Better display for tags in document list

This commit is contained in:
jendib
2013-08-07 13:51:29 +02:00
parent 395b528b4b
commit 1deda6e993
4 changed files with 38 additions and 1 deletions

View File

@@ -49,7 +49,9 @@
<td>{{ document.title }}</td>
<td>{{ document.create_date | date: 'yyyy-MM-dd' }}</td>
<td class="hidden-phone cell-tags">
<span class="label label-info" ng-repeat="tag in document.tags">{{ tag.name }}</span>
<div class="tags">
<span class="label label-info" ng-repeat="tag in document.tags"><span class="shorten">{{ tag.name | shorten }}</span><span class="full">{{ tag.name }}</span></span>
</div>
</td>
</tr>
</tbody>