Removed form button from signin for create a new wallet. It is just a link.

This commit is contained in:
Gustavo Cortez 2014-06-02 18:12:23 -03:00
commit 5c14bf0ebc
2 changed files with 1 additions and 8 deletions

View file

@ -12,10 +12,6 @@ angular.module('copay.signin').controller('SigninController',
$scope.selectedWalletId = $scope.wallets.length ? $scope.wallets[0].id : null;
$scope.openPassword = '';
$scope.create = function(form) {
$location.path('setup');
};
$scope.open = function(form) {
if (form && form.$invalid) {
$rootScope.$flashMessage = { message: 'Please, enter required fields', type: 'error'};