[Build] Add curly braces around if block

...to satisfy JSHint
This commit is contained in:
Victor Woeltjen 2016-03-04 10:51:08 -08:00
parent dda0628621
commit 2dabe0d3c4

View File

@ -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();