This commit is contained in:
parent
90195c0f38
commit
f13e71b045
4 changed files with 11 additions and 11 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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('/');
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue