fish-shell/share/tools/web_config/partials/history.html
2013-10-17 19:47:04 +05:30

17 lines
653 B
HTML

<div id="table_filter_container" style="display: block;">
<span ng-show="loadingText.length > 0"> {{ loadingText }} </span>
<input id="table_filter_text_box" class="filter_text_box text_box_transient" placeholder="Filter" ng-model="query">
</div>
<table class="data_table">
<tbody>
<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>
</tbody>
</table>