[Imagery] Add missing semicolon, remove unused vars

This commit is contained in:
Victor Woeltjen
2017-05-31 16:02:12 -07:00
parent 95188f6ce6
commit 53cecb8909

View File

@@ -28,9 +28,6 @@ define(
['moment'], ['moment'],
function (moment) { function (moment) {
var DATE_FORMAT = "YYYY-MM-DD",
TIME_FORMAT = "HH:mm:ss.SSS";
/** /**
* Controller for the "Imagery" view of a domain object which * Controller for the "Imagery" view of a domain object which
* provides image telemetry. * provides image telemetry.
@@ -87,7 +84,7 @@ define(
this.unsubscribe(); this.unsubscribe();
delete this.unsubscribe; delete this.unsubscribe;
} }
} };
// Update displayable values to reflect latest image telemetry // Update displayable values to reflect latest image telemetry
ImageryController.prototype.updateValues = function (datum) { ImageryController.prototype.updateValues = function (datum) {