aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/webapp/app
diff options
context:
space:
mode:
authoranushadasari <danush10@in.ibm.com>2019-09-12 16:34:16 +0530
committerIttay Stern <ittay.stern@att.com>2019-09-24 16:36:57 +0000
commit4f68c5a8cca4c7d8f3fb38e32460925f27a03262 (patch)
treee2b6c88220791de46f68e19ed5a14edf8278f27a /vid-app-common/src/main/webapp/app
parente9cb05ed8984671709aa1876d798e9136a7cb45f (diff)
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: Ibf05db5e76be01c78cfac8196fcf4bb09dfa7709 Signed-off-by: anushadasari <danush10@in.ibm.com>
Diffstat (limited to 'vid-app-common/src/main/webapp/app')
-rwxr-xr-xvid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js b/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js
index de5e9c007..a2e20e4a2 100755
--- a/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js
+++ b/vid-app-common/src/main/webapp/app/vid/scripts/services/detailsService.js
@@ -113,8 +113,8 @@ var DetailsService = function ($log, DataService, ComponentService, COMPONENT,
getSummaryList: getSummaryList,
getDetailsList: getDetailsList,
getMsoFilterString: getMsoFilterString
- }
-}
+ };
+};
appDS2.factory("DetailsService", ["$log", "DataService", "ComponentService",
"COMPONENT", "FIELD", "UtilityService", DetailsService]);