diff options
Diffstat (limited to 'vid-app-common/src/main/webapp/app')
3 files changed, 5 insertions, 5 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js index e127d5d74..93323d911 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/search.js @@ -27,5 +27,5 @@ appDS2.directive('searchText', function() { scope: { searchString : '=' } - } + }; }); diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js index 77bf9c806..3a7ef9e4d 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/serviceMetadata.js @@ -30,5 +30,5 @@ appDS2.directive('serviceMetadata', function() { }, link : function(scope, element, attrs) { } - } + }; }); diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js b/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js index 15c57f756..bcac579f3 100644 --- a/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/modals/alert-modal/alert-modal.controller.js @@ -31,11 +31,11 @@ vm.content = jobInfo.message; vm.mode = jobInfo.status; if (vm.mode == "failed") { - vm.Header = "Failed" + vm.Header = "Failed"; } else if (vm.mode == "confirm") { - vm.Header = "Confirm" + vm.Header = "Confirm"; } else { - vm.Header = "Success" + vm.Header = "Success"; } } }; |