From 64cacd3b1d1f939c07721bf0c89a0e2d403f0a37 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Sat, 17 May 2014 01:21:15 -0300 Subject: [PATCH] add multiple optiomizations for 30+ tx wallets --- js/controllers/transactions.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/js/controllers/transactions.js b/js/controllers/transactions.js index 147a81ca6..a8e1062b7 100644 --- a/js/controllers/transactions.js +++ b/js/controllers/transactions.js @@ -34,8 +34,10 @@ angular.module('copay.transactions').controller('TransactionsController', }); } else { - $scope.loading=false; - $rootScope.$digest(); + setTimeout(function(){ + $scope.loading=false; + $rootScope.$digest(); + }); } };