[Imagery] Use consistent field name

This commit is contained in:
Victor Woeltjen
2017-05-31 15:52:15 -07:00
parent b60eb6d6ae
commit 8c7e8dab8e

View File

@@ -96,7 +96,7 @@ define(
return; return;
} }
this.time = this.timeFormat.format(datum); this.time = this.timeFormat.format(datum);
this.image = this.imageFormat.format(datum); this.imageUrl = this.imageFormat.format(datum);
}; };
/** /**
@@ -113,7 +113,7 @@ define(
* @returns {string} URL for telemetry image * @returns {string} URL for telemetry image
*/ */
ImageryController.prototype.getImageUrl = function () { ImageryController.prototype.getImageUrl = function () {
return this.image; return this.imageUrl;
}; };
/** /**