Commented unnecessary digest.

This commit is contained in:
Gustavo Cortez 2014-05-01 16:21:48 -03:00
commit 7f63d3e1f9

View file

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