add steps to creation process

This commit is contained in:
Gustavo Maximiliano Cortez 2014-08-06 18:21:14 -03:00
commit c588d97fc3
5 changed files with 6 additions and 0 deletions

View file

@ -7,6 +7,7 @@ angular.module('copayApp.controllers').controller('OpenController',
v2 = o2.show.toLowerCase();
return v1 > v2 ? 1 : (v1 < v2) ? -1 : 0;
};
$rootScope.fromSetup = false;
$scope.loading = false;
$scope.wallets = walletFactory.getWallets().sort(cmp);
$scope.selectedWalletId = walletFactory.storage.getLastOpened() || ($scope.wallets[0] && $scope.wallets[0].id);