表格增加title显示
This commit is contained in:
parent
1816dd3f69
commit
392cb0a80f
|
|
@ -97,7 +97,7 @@
|
|||
<th style="width:90px;">点击次数</th>
|
||||
<th style="width:100px;">创建日期</th>
|
||||
<th style="width:100px;">最后点击</th>
|
||||
<th>分类</th>
|
||||
<th style="width:150px;">分类</th>
|
||||
<th style="width:105px;">操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
|
@ -105,11 +105,13 @@
|
|||
<tr ng-repeat="bookmark in bookmarks" id="{{ bookmark.id }}">
|
||||
<td>
|
||||
<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 }}
|
||||
</span>
|
||||
</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.created_at }}</td>
|
||||
<td>{{ bookmark.last_click }}</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue