From 34369db605daa0a5ec97ec3baf598a7e89aa9106 Mon Sep 17 00:00:00 2001 From: anushadasari Date: Wed, 4 Sep 2019 22:21:55 +0530 Subject: 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-607 Change-Id: I92d5834ace5659334bdede1dfc2af23cc697f78a Signed-off-by: anushadasari --- .../main/webapp/app/vid/scripts/directives/popupWindowDirective.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vid-app-common/src') diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js index 1ca32034c..a26744d38 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/popupWindowDirective.js @@ -64,7 +64,7 @@ var popupWindowDirective = function($log, $window) { scrollPosition = { x : $window.pageXOffset, y : $window.pageYOffset - } + }; $window.scrollTo(0, 0); element.css("display", "table"); element.prev().css("display", "block"); @@ -74,7 +74,7 @@ var popupWindowDirective = function($log, $window) { $window.scrollTo(scrollPosition.x, scrollPosition.y); } }); - } + }; return { restrict : "EA", @@ -83,6 +83,6 @@ var popupWindowDirective = function($log, $window) { link : link, template : '
' }; -} +}; appDS2.directive("popupWindow", [ "$log", "$window", popupWindowDirective ]); -- cgit 1.2.3-korg From 8ba39390e14398714906abe50a68c8e6aa0bb7fd Mon Sep 17 00:00:00 2001 From: anushadasari Date: Wed, 4 Sep 2019 22:25:31 +0530 Subject: Add semicolon at the end 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-607 Change-Id: Ief3162f9990689251c7268c515107a34b1a03a52 Signed-off-by: anushadasari --- .../webapp/app/vid/scripts/directives/progressBarDirective.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'vid-app-common/src') diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/directives/progressBarDirective.js b/vid-app-common/src/main/webapp/app/vid/scripts/directives/progressBarDirective.js index 2f60d65dc..8294597bd 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/directives/progressBarDirective.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/directives/progressBarDirective.js @@ -127,7 +127,7 @@ var progressBarDirective = function() { */ element.html(""); } - } + }; return { restrict : "EA", @@ -153,7 +153,7 @@ var progressBarDirective = function() { control.reset = function() { previousValue = 0; updateProgress(element, attrs, 0); - } + }; attrs.$observe("value", function(valueString) { updateProgress(element, attrs, valueString); @@ -167,7 +167,7 @@ var progressBarDirective = function() { } }); } - } -} + }; +}; appDS2.directive("progressBar", progressBarDirective); -- cgit 1.2.3-korg