diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-09-02 12:54:07 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-09-02 12:54:07 +0000 |
commit | b854b38ea408a88632445e47597b5db4533c0d59 (patch) | |
tree | 4db8a98a1ebb7a4858ed4df1e4389b4b03a33c1c /vid-app-common/src/main/webapp/app | |
parent | f1d68862af43f2d428042476e876b5073978bbc1 (diff) | |
parent | 4d45dd55016fff5bb10aca1a2e3b858333c6f93d (diff) |
Merge "Add a semicolon at the end of this statement"
Diffstat (limited to 'vid-app-common/src/main/webapp/app')
-rw-r--r-- | vid-app-common/src/main/webapp/app/vid/scripts/controller/deleteResumeDialogController.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/deleteResumeDialogController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/deleteResumeDialogController.js index d7b7bab33..4c58f2b79 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/deleteResumeDialogController.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/deleteResumeDialogController.js @@ -69,7 +69,7 @@ var deleteResumeDialogController = function( COMPONENT, FIELD, $scope, $http, $t $scope.userParameterChanged = function(id) { DeleteResumeService.updateUserParameterList(id, $scope.userProvidedControl); - } + }; $scope.confirm = function() { DataService.setE2EService($scope.isE2EService); //VoLTE support @@ -139,13 +139,13 @@ var deleteResumeDialogController = function( COMPONENT, FIELD, $scope, $http, $t } - } + }; $scope.cancel = function() { $scope.isDialogVisible = false; $scope.popup.isVisible = false; runCallback(false); - } + }; var runCallback = function(isSuccessful) { if (angular.isFunction(callbackFunction)) { @@ -153,8 +153,8 @@ var deleteResumeDialogController = function( COMPONENT, FIELD, $scope, $http, $t isSuccessful : isSuccessful }); } - } -} + }; +}; appDS2.controller("deleteResumeDialogController", [ "COMPONENT", "FIELD", "$scope", "$http", "$timeout", "$log", "DataService", "DeleteResumeService","CreationService", "UtilityService", |