aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoranushadasari <danush10@in.ibm.com>2019-09-02 17:07:26 +0530
committerIttay Stern <ittay.stern@att.com>2019-09-10 13:05:45 +0000
commitac281ff82fe50f9c043b2605d9843748f7aa1458 (patch)
treedfa36ab31bdf40fbf7746bcee0c59e43107fab16
parent1b4336d9c26c4febe86036900bfa7994c0fadca5 (diff)
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 <danush10@in.ibm.com>
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/constants/parameterConstants.js5
1 files changed, 2 insertions, 3 deletions
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'
};
-})())
+})());