Merge pull request #2525 from matiu/bug/walletHome

Bug/wallet home
This commit is contained in:
Gustavo Maximiliano Cortez 2015-04-16 12:18:09 -03:00
commit 5ce4269ba7
3 changed files with 9 additions and 1 deletions

View file

@ -6,9 +6,11 @@ angular.module('copayApp.controllers').controller('walletHomeController', functi
$scope.openCopayersModal = function(copayers, copayerId) {
var fc = profileService.focusedClient;
var ModalInstanceCtrl = function($scope, $modalInstance) {
$scope.copayers = copayers;
$scope.copayerId = copayerId;
$scope.color = fc.backgroundColor;
$scope.cancel = function() {
$modalInstance.dismiss('cancel');
};