Lines Matching full:scope
10 '$scope', '$uibModal', 'toastService',
11 function($scope, $uibModal, toastService) {
41 $scope.activeModal;
42 $scope.activeModalProps;
44 $scope.remoteServer;
45 $scope.remoteServerForm;
46 $scope.loadError = true;
48 $scope.initModal = (type) => {
52 $scope.activeModal = type;
53 $scope.activeModalProps = modalActions.properties[type];
59 scope: $scope, property in AnonymousClass0c988ca60401
86 $scope.loading = true;
87 APIUtils.setRemoteLoggingServer($scope.remoteServerForm)
89 $scope.loading = false;
90 $scope.remoteServer = {...$scope.remoteServerForm};
92 $scope.activeModalProps.successMessage);
95 $scope.loading = false;
96 $scope.remoteServer = undefined;
99 $scope.activeModalProps.errorMessage);
104 $scope.loading = true;
105 APIUtils.updateRemoteLoggingServer($scope.remoteServerForm)
107 $scope.loading = false;
108 $scope.remoteServer = {...$scope.remoteServerForm};
110 $scope.activeModalProps.successMessage);
113 $scope.loading = false;
116 $scope.activeModalProps.errorMessage);
121 $scope.loading = true;
124 $scope.loading = false;
125 $scope.remoteServer = undefined;
128 $scope.activeModalProps.successMessage);
131 $scope.loading = false;
133 $scope.activeModalProps.errorMessage);
138 $scope.remoteServerForm = {...$scope.remoteServer};
144 $scope.loadError = false;
145 $scope.remoteServer = remoteServer;
149 $scope.loadError = true;