Lines Matching full:scope
14 '$scope', 'APIUtils', 'dataService', 'toastService',
15 function($scope, APIUtils, dataService, toastService) { argument
16 $scope.username;
17 $scope.minPasswordLength;
18 $scope.maxPasswordLength;
19 $scope.password;
20 $scope.passwordConfirm;
27 $scope.loading = true;
28 APIUtils.updateUser($scope.username, null, password)
37 $scope.password = '';
38 $scope.passwordConfirm = '';
39 $scope.form.$setPristine();
40 $scope.form.$setUntouched();
41 $scope.loading = false;
51 $scope.minPasswordLength = accountSettings.MinPasswordLength;
52 $scope.maxPasswordLength = accountSettings.MaxPasswordLength;
59 $scope.onSubmit = function(form) {
69 $scope.$on('$viewContentLoaded', () => {
71 $scope.username = dataService.getUser();