hidden balance feature refactor

This commit is contained in:
Gabriel Bazán 2016-08-31 11:49:28 -03:00
commit e73091ae46
4 changed files with 11 additions and 13 deletions

View file

@ -727,5 +727,9 @@ angular.module('copayApp.services')
}, 'createdOn']);
};
root.setHideBalanceFlag = function(walletId) {
root.wallet[walletId].balanceHidden = !root.wallet[walletId].balanceHidden;
}
return root;
});