Skip to content

Commit

Permalink
fix: show message unconfirmed transactions if there is not transactio…
Browse files Browse the repository at this point in the history
…n confirmed yet
  • Loading branch information
cmgustavo committed Jan 13, 2014
1 parent 6fc9521 commit aea2af5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion public/views/transaction.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ <h1>
<tfoot>
<tr>
<td colspan="3" style="text-align: right;">
<button type="button" class="btn btn-primary">{{tx.confirmations}} Confirmations</button>
<button data-ng-show="tx.confirmations" type="button" class="btn btn-primary">
{{tx.confirmations}} Confirmations
</button>
<button data-ng-show="!tx.confirmations" type="button" class="btn btn-danger">
Unconfirmed Transaction!
</button>
<button type="button" class="btn btn-success">{{tx.valueOut}} BTC</button>
</td>
</tr>
Expand Down

0 comments on commit aea2af5

Please sign in to comment.