2013-09-07 17:06:23 +00:00
|
|
|
<div id="table_filter_container" style="display: block;">
|
|
|
|
<input id="table_filter_text_box" class="filter_text_box text_box_transient" placeholder="Filter" ng-model="query">
|
|
|
|
</div>
|
|
|
|
|
2013-08-16 18:32:58 +00:00
|
|
|
<table id="data_table" style="display: table;" >
|
|
|
|
<tbody>
|
2013-09-07 17:06:23 +00:00
|
|
|
<tr class="data_table_row" ng-repeat="item in historyItems | filter:query">
|
2013-08-16 18:32:58 +00:00
|
|
|
<td class="data_table_cell no_overflow" style="text-align: left; padding-right: 30px;">{{ item }}</td>
|
|
|
|
<td class="data_table_cell" style="text-align: right; width: 25px">
|
2013-08-18 14:18:56 +00:00
|
|
|
<a ng-click="deleteHistoryItem(item)">
|
2013-08-16 18:32:58 +00:00
|
|
|
<img class="delete_icon" src="delete.png">
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|