From 82893c703a2888d9c164a217dc1ea68aa9be46df Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Wed, 4 Jun 2014 10:57:15 -0300 Subject: [PATCH] Fixed UI. Now aligned with other buttons --- index.html | 11 +++++------ js/controllers/transactions.js | 6 ++++++ 2 files changed, 11 insertions(+), 6 deletions(-) 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

+
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); + } } };