Initial page. Signin.

This commit is contained in:
Gustavo Cortez 2014-04-30 16:11:55 -03:00
commit fa2d40bdad
4 changed files with 57 additions and 40 deletions

View file

@ -6,8 +6,9 @@ angular.module('copay.signin').controller('SigninController',
$scope.wallets = walletFactory.getWallets();
$scope.selectedWalletId = $scope.wallets.length ? $scope.wallets[0].id : null;
$scope.create = function() {
$scope.create = function(walletName) {
$scope.loading = true;
$rootScope.walletName = walletName;
$location.path('setup');
};