fix refreshs

This commit is contained in:
Matias Alejo Garcia 2016-08-23 17:45:23 -03:00
commit d7080bb2c9
No known key found for this signature in database
GPG key ID: 02470DB551277AB3
3 changed files with 16 additions and 22 deletions

View file

@ -32,7 +32,9 @@ angular.module('copayApp.controllers').controller('tabHomeController',
return;
}
wallet.status = status;
$scope.$apply();
$timeout(function(){
$scope.$apply();
}, 1);
});
};