remove many unnecesary digests

This commit is contained in:
Manuel Araoz 2014-05-09 15:17:24 -03:00
commit f764c743e4
4 changed files with 1 additions and 5 deletions

View file

@ -11,7 +11,6 @@ angular.module('copay.addresses').controller('AddressesController',
w.generateAddress(); w.generateAddress();
controllerUtils.updateBalance(function() { controllerUtils.updateBalance(function() {
$scope.loading = false; $scope.loading = false;
$rootScope.$digest();
}); });
}; };

View file

@ -46,7 +46,6 @@ angular.module('copay.header').controller('HeaderController',
var w = $rootScope.wallet; var w = $rootScope.wallet;
w.connectToAll(); w.connectToAll();
controllerUtils.updateBalance(function() { controllerUtils.updateBalance(function() {
$rootScope.$digest();
}); });
}; };

View file

@ -319,7 +319,6 @@ Wallet.prototype.generateAddress = function(isChange) {
var addr = this.publicKeyRing.generateAddress(isChange); var addr = this.publicKeyRing.generateAddress(isChange);
this.sendPublicKeyRing(); this.sendPublicKeyRing();
this.store(); this.store();
this.emit('refresh');
return addr; return addr;
}; };

View file

@ -80,7 +80,6 @@ angular.module('copay.controllerUtils')
}); });
w.on('refresh', function() { w.on('refresh', function() {
root.updateBalance(function() { root.updateBalance(function() {
$rootScope.$digest();
}); });
$rootScope.$digest(); $rootScope.$digest();
}); });
@ -111,6 +110,7 @@ angular.module('copay.controllerUtils')
$rootScope.balanceByAddr = balanceByAddr; $rootScope.balanceByAddr = balanceByAddr;
$rootScope.selectedAddr = $rootScope.addrInfos[0].address.toString(); $rootScope.selectedAddr = $rootScope.addrInfos[0].address.toString();
$rootScope.loading = false; $rootScope.loading = false;
$rootScope.$digest();
if (cb) cb(); if (cb) cb();
}); });
w.getBalance(true, function(balance) { w.getBalance(true, function(balance) {
@ -135,7 +135,6 @@ angular.module('copay.controllerUtils')
Socket.on(addr, function(txid) { Socket.on(addr, function(txid) {
console.log('Received!', txid); console.log('Received!', txid);
root.updateBalance(function() { root.updateBalance(function() {
$rootScope.$digest();
}); });
}); });
}); });