From e1f3f29db0495a4481c7d62acdafb0fd4f2e8954 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Mon, 27 Oct 2014 17:16:24 -0300 Subject: [PATCH] refreshing view --- js/controllers/transactions.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/controllers/transactions.js b/js/controllers/transactions.js index ebaa017ae..3bf002351 100644 --- a/js/controllers/transactions.js +++ b/js/controllers/transactions.js @@ -64,6 +64,9 @@ angular.module('copayApp.controllers').controller('TransactionsController', $scope.blockchain_txs = w.cached_txs = res; $scope.loading = false; + setTimeout(function() { + $scope.$digest(); + }, 1); }); };