From 2dabe0d3c426dcf683d23b0582e27bc2188f3b79 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 4 Mar 2016 10:51:08 -0800 Subject: [PATCH] [Build] Add curly braces around if block ...to satisfy JSHint --- .../features/table/src/controllers/TelemetryTableController.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/features/table/src/controllers/TelemetryTableController.js b/platform/features/table/src/controllers/TelemetryTableController.js index 747f6cc137..12339cf9e6 100644 --- a/platform/features/table/src/controllers/TelemetryTableController.js +++ b/platform/features/table/src/controllers/TelemetryTableController.js @@ -59,8 +59,9 @@ define( // Subscribe to telemetry when a domain object becomes available this.$scope.$watch('domainObject', function(domainObject){ - if (!domainObject) + if (!domainObject) { return; + } self.subscribe(); self.registerChangeListeners();