Merge "Add a semicolon at the end of this statement"
authorIttay Stern <ittay.stern@att.com>
Mon, 2 Sep 2019 12:54:07 +0000 (12:54 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 2 Sep 2019 12:54:07 +0000 (12:54 +0000)
vid-app-common/src/main/webapp/app/vid/scripts/controller/deleteResumeDialogController.js

index d7b7bab..4c58f2b 100644 (file)
@@ -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",