diff options
author | anushadasari <danush10@in.ibm.com> | 2019-08-29 21:24:47 +0530 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-09-02 10:32:48 +0000 |
commit | 4d45dd55016fff5bb10aca1a2e3b858333c6f93d (patch) | |
tree | 6d24af8f318c8f3f70fa353d09146081c3d360c0 /vid-app-common/src | |
parent | a98f4ff3ed19a38ed18e34a5a18e3be2c9e63732 (diff) |
Add a semicolon at the end of this statement
In JavaScript, the semicolon (;) is optional as a statement separator, but omitting semicolons can be confusing, and lead to unexpected results because a semicolon is implicitly inserted at the end of each line.
Issue-ID: VID-597
Change-Id: I64c97eaf1877016fe79e6e31caf620f8c99363df
Signed-off-by: anushadasari <danush10@in.ibm.com>
Diffstat (limited to 'vid-app-common/src')
-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", |