diff --git a/index.html b/index.html index 3b74ebfa3..88641b2bb 100644 --- a/index.html +++ b/index.html @@ -517,12 +517,11 @@
-

Last transactions - - Show - Hide - -

+

Last transactions

+
+ [ Show ] + [ Hide ] +
No transactions yet. diff --git a/js/controllers/transactions.js b/js/controllers/transactions.js index f51d1613a..92410a34b 100644 --- a/js/controllers/transactions.js +++ b/js/controllers/transactions.js @@ -158,6 +158,12 @@ angular.module('copayApp.controllers').controller('TransactionsController', }, 10); }); } + else { + $timeout(function() { + $scope.loading = false; + $scope.lastShowed = false; + }, 1); + } } };