表格增加title显示

This commit is contained in:
luchenqun 2016-11-13 22:41:01 +08:00
parent 1816dd3f69
commit 392cb0a80f
1 changed files with 5 additions and 3 deletions

View File

@ -97,7 +97,7 @@
<th style="width:90px;">点击次数</th> <th style="width:90px;">点击次数</th>
<th style="width:100px;">创建日期</th> <th style="width:100px;">创建日期</th>
<th style="width:100px;">最后点击</th> <th style="width:100px;">最后点击</th>
<th>分类</th> <th style="width:150px;">分类</th>
<th style="width:105px;">操作</th> <th style="width:105px;">操作</th>
</tr> </tr>
</thead> </thead>
@ -105,11 +105,13 @@
<tr ng-repeat="bookmark in bookmarks" id="{{ bookmark.id }}"> <tr ng-repeat="bookmark in bookmarks" id="{{ bookmark.id }}">
<td> <td>
<img class="ui ui middle aligned tiny image" src="http://www.google.com/s2/favicons?domain={{bookmark.url}}" style="width:16px;height:16px"> <img class="ui ui middle aligned tiny image" src="http://www.google.com/s2/favicons?domain={{bookmark.url}}" style="width:16px;height:16px">
<span ng-click="jumpToUrl(bookmark.url, bookmark.id)"> <span ng-click="jumpToUrl(bookmark.url, bookmark.id)" title="{{bookmark.title}}">
{{ bookmark.title }} {{ bookmark.title }}
</span> </span>
</td> </td>
<td ng-click="jumpToUrl(bookmark.url, bookmark.id)">{{ bookmark.url }}</td> <td ng-click="jumpToUrl(bookmark.url, bookmark.id)">
<span title="{{bookmark.url}}">{{ bookmark.url }}</span>
</td>
<td>{{ bookmark.click_count }}</td> <td>{{ bookmark.click_count }}</td>
<td>{{ bookmark.created_at }}</td> <td>{{ bookmark.created_at }}</td>
<td>{{ bookmark.last_click }}</td> <td>{{ bookmark.last_click }}</td>