UI changes to setup and signin

This commit is contained in:
Manuel Araoz 2014-05-27 17:58:04 -03:00
commit d970d670f9
2 changed files with 12 additions and 17 deletions

View file

@ -13,15 +13,6 @@ angular.module('copay.signin').controller('SigninController',
$scope.openPassword = '';
$scope.create = function(form) {
if (form && form.$invalid) {
$rootScope.$flashMessage = { message: 'Please, enter required fields', type: 'error'};
return;
}
$rootScope.walletName = form.walletName.$modelValue;
$rootScope.walletPassword = form.createPassword.$modelValue;
$location.path('setup');
};