aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app/vid/scripts/controller
diff options
context:
space:
mode:
authorIttay Stern <ittay.stern@att.com>2019-08-29 12:14:35 +0000
committerGerrit Code Review <gerrit@onap.org>2019-08-29 12:14:35 +0000
commit063bae2178412f29216b49788c613b863e611f70 (patch)
tree65bb1ecc337784f0b62d277dbd5ef5f91c8ba36b /vid-app-common/src/main/webapp/app/vid/scripts/controller
parent44d49cc9257c70ffdf70b9f6c8252792e706c48b (diff)
parent64f07b08e71fd4948f08e946dea6b42d86d4a291 (diff)
Merge "Add a semicolon at the end of this statement."
Diffstat (limited to 'vid-app-common/src/main/webapp/app/vid/scripts/controller')
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/controller/detailsDialogController.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/controller/detailsDialogController.js b/vid-app-common/src/main/webapp/app/vid/scripts/controller/detailsDialogController.js
index 9abcb42e6..15717130a 100755
--- a/vid-app-common/src/main/webapp/app/vid/scripts/controller/detailsDialogController.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/controller/detailsDialogController.js
@@ -61,12 +61,12 @@ var detailsDialogController = function($scope, $http, $timeout, $log,
$scope.log = MsoService.getFormattedCommonResponse(response);
MsoService.showResponseContentError(error, showError);
}
- }
+ };
$scope.close = function() {
$scope.isDialogVisible = false;
$scope.popup.isVisible = false;
- }
+ };
var showError = function(summary, details) {
var message = summary;
@@ -76,8 +76,8 @@ var detailsDialogController = function($scope, $http, $timeout, $log,
$scope.isSpinnerVisible = false;
$scope.isErrorVisible = true;
$scope.error = message;
- }
-}
+ };
+};
appDS2.controller("detailsDialogController", [ "$scope", "$http", "$timeout",
"$log", "MsoService", "DetailsService", "UtilityService", "COMPONENT", "FIELD",