mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 06:46:12 +08:00
17 lines
653 B
HTML
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>
|