2013-09-08 01:06:23 +08:00
|
|
|
<div id="table_filter_container" style="display: block;">
|
2013-10-12 20:18:11 +08:00
|
|
|
<span ng-show="loadingText.length > 0"> {{ loadingText }} </span>
|
2013-09-08 01:06:23 +08:00
|
|
|
<input id="table_filter_text_box" class="filter_text_box text_box_transient" placeholder="Filter" ng-model="query">
|
|
|
|
</div>
|
2013-10-12 20:18:11 +08:00
|
|
|
<table class="data_table">
|
2013-08-17 02:32:58 +08:00
|
|
|
<tbody>
|
2013-10-12 20:18:11 +08:00
|
|
|
<tr ng-repeat="item in historyItems | filter:query">
|
|
|
|
<td class="history_text no_overflow">{{ item }}</td>
|
|
|
|
<td class="history_delete">
|
|
|
|
<a ng-click="deleteHistoryItem(item)">
|
|
|
|
<img class="delete_icon" src="delete.png">
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
2013-08-17 02:32:58 +08:00
|
|
|
</tbody>
|
|
|
|
</table>
|