Refresh list of pending transactions proposals after any events
This commit is contained in:
parent
692852617f
commit
431a66eeb2
6 changed files with 108 additions and 129 deletions
|
|
@ -1,15 +1,15 @@
|
|||
<div class="send" data-ng-controller="SendController" data-ng-init="loadTxs()">
|
||||
<div class="send" ng-controller="SendController" ng-init="loadTxs()">
|
||||
<div ng-show='$root.wallet.isReady()'>
|
||||
|
||||
<div class="row" ng-show="txs.length != 0">
|
||||
<div class="row" ng-show="$root.txps.length != 0">
|
||||
<div class="large-12 columns">
|
||||
<h2 translate>Pending Transactions Proposals</h2>
|
||||
<div class="last-transactions"
|
||||
ng-repeat="tx in txs | paged"
|
||||
ng-repeat="tx in $root.txps | paged"
|
||||
ng-include="'views/includes/transaction.html'"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div ng-show="txs.length != 0" class="line-dashed-h m20b"></div>
|
||||
<div ng-show="$root.txps.length != 0" class="line-dashed-h m20b"></div>
|
||||
|
||||
<h1 class="hide-for-large-up">{{$root.title}}</h1>
|
||||
<div class="row">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue