fix send form

This commit is contained in:
Matias Alejo Garcia 2014-12-30 10:37:04 -03:00
commit 6f94825d2d
5 changed files with 13 additions and 9 deletions

View file

@ -4,7 +4,8 @@ angular.module('copayApp.controllers').controller('HomeWalletController', functi
$scope.initHome = function() {
$rootScope.title = 'Home';
var w = $rootScope.wallet;
if (w.isShared())
$scope.isShared = w.isShared();
if ($scope.isShared)
$scope.copayers = w.getRegisteredPeerIds();
};