mirror of
https://github.com/nasa/openmct.git
synced 2025-06-21 16:49:42 +00:00
[Build] Add curly braces around if block
...to satisfy JSHint
This commit is contained in:
@ -59,8 +59,9 @@ define(
|
|||||||
|
|
||||||
// Subscribe to telemetry when a domain object becomes available
|
// Subscribe to telemetry when a domain object becomes available
|
||||||
this.$scope.$watch('domainObject', function(domainObject){
|
this.$scope.$watch('domainObject', function(domainObject){
|
||||||
if (!domainObject)
|
if (!domainObject) {
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
self.subscribe();
|
self.subscribe();
|
||||||
self.registerChangeListeners();
|
self.registerChangeListeners();
|
||||||
|
Reference in New Issue
Block a user