Merge pull request #192 from colkito/bug/fade-transaction-list
remover the fade effect in the transaction list
This commit is contained in:
commit
ad8392380d
@ -75,7 +75,7 @@ function($scope, $rootScope, $routeParams, $location, Global, Transaction, Trans
|
|||||||
tx.voutSimple = _aggregateItems(tx.vout);
|
tx.voutSimple = _aggregateItems(tx.vout);
|
||||||
};
|
};
|
||||||
|
|
||||||
var _paginate = function (data) {
|
var _paginate = function(data) {
|
||||||
$scope.loading = false;
|
$scope.loading = false;
|
||||||
|
|
||||||
pagesTotal = data.pagesTotal;
|
pagesTotal = data.pagesTotal;
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
<div class="alert alert-warning" data-ng-show="!txs[0].txid && !loading">There are not transactions</div>
|
<div class="alert alert-warning" data-ng-show="!txs[0].txid && !loading">There are not transactions</div>
|
||||||
<div class="block-tx fader" data-ng-show="txs && txs[0].txid" data-ng-repeat="tx in txs">
|
<div class="block-tx" data-ng-show="txs && txs[0].txid" data-ng-repeat="tx in txs">
|
||||||
<div data-ng-include src="'/views/transaction/tx.html'"></div>
|
<div data-ng-include src="'/views/transaction/tx.html'"></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="progress progress-striped active" data-ng-show="loading">
|
<div class="progress progress-striped active" data-ng-show="loading">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user