This commit is contained in:
Matias Alejo Garcia 2014-12-06 17:54:02 -03:00
commit f13e71b045
4 changed files with 11 additions and 11 deletions

View file

@ -117,8 +117,8 @@ angular.module('copayApp.controllers').controller('CreateProfileController', fun
// mobile
if ($scope.isMobile) {
_credentials = {
email: form.email.$modelValue,
password: form.password.$modelValue,
email: emailOrUsername,
password: password,
};
$scope.askForPin = 1;
$rootScope.hideNavigation = true;

View file

@ -89,14 +89,14 @@ angular.module('copayApp.controllers').controller('SettingsController', function
}),
},
function() {
notification.success('Settings saved');
notification.success('Settings saved',"Settings were saved");
$location.path('/');
});
};
$scope.reset = function() {
configService.reset(function() {
notification.success('Settings reseted');
notification.success('Settings reseted',"Settings were reseted");
$location.path('/');
});
};