From ac281ff82fe50f9c043b2605d9843748f7aa1458 Mon Sep 17 00:00:00 2001 From: anushadasari Date: Mon, 2 Sep 2019 17:07:26 +0530 Subject: Semicolon at the end of the Statement and Remove trailing whitespaces at the end of this line 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-604 Change-Id: I850ee4d00e2f263105a15a5778c11cfb2e526986 Signed-off-by: anushadasari --- .../src/main/webapp/app/vid/scripts/constants/parameterConstants.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'vid-app-common/src/main/webapp/app') diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js b/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js index 1e289f534..c3c55df59 100755 --- a/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js +++ b/vid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js @@ -50,7 +50,6 @@ appDS2.constant("PARAMETER", (function() { LESS_OR_EQUAL: "less_or_equal", DISPLAY_NAME: "displayName", CHECKBOX:'checkbox', - FILE:'file' - + FILE:'file' }; -})()) +})()); -- cgit 1.2.3-korg