Merge pull request #251 from cmgustavo/bug/01-digest

Commented unnecessary digest.
This commit is contained in:
Mario Colque 2014-05-01 16:31:45 -03:00
commit 777ef70d4d
1 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ angular.module('copay.transactions').controller('TransactionsController',
if (p.builder.isFullySigned()) {
$scope.send(ntxid);
_updateTxs();
$rootScope.$digest();
// $rootScope.$digest();
}
else {
_updateTxs();
@ -98,7 +98,7 @@ angular.module('copay.transactions').controller('TransactionsController',
w.reject(ntxid);
$rootScope.flashMessage = {type:'warning', message: 'Transaction rejected by you'};
_updateTxs();
$rootScope.$digest();
// $rootScope.$digest();
};
_updateTxs();