mirror of
https://gitlab.com/ric_harvey/MailHog.git
synced 2024-11-23 22:34:04 +00:00
Add glyphicons to show/hide header buttons
This commit is contained in:
parent
ec5d6a4572
commit
7e467afbe6
1 changed files with 2 additions and 2 deletions
|
@ -120,7 +120,7 @@ func Index() string {
|
|||
<tr>
|
||||
<th>To</th>
|
||||
<td>
|
||||
<button ng-click="$parent.previewAllHeaders = true" type="button" class="btn btn-default pull-right btn-xs">Show headers</button>
|
||||
<button ng-click="$parent.previewAllHeaders = true" type="button" class="btn btn-default pull-right btn-xs">Show headers <span class="glyphicon glyphicon-chevron-down"></span></button>
|
||||
{{ preview.Content.Headers["To"].join(', ') }}
|
||||
</td>
|
||||
</tr>
|
||||
|
@ -131,7 +131,7 @@ func Index() string {
|
|||
{{ header }}
|
||||
</th>
|
||||
<td>
|
||||
<button ng-if="$last" ng-click="$parent.$parent.$parent.previewAllHeaders = false" type="button" class="btn btn-default pull-right btn-xs">Hide headers</button>
|
||||
<button ng-if="$last" ng-click="$parent.$parent.$parent.previewAllHeaders = false" type="button" class="btn btn-default pull-right btn-xs">Hide headers <span class="glyphicon glyphicon-chevron-up"></span></button>
|
||||
<div ng-repeat="v in value">{{ v }}</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Reference in a new issue