[Telemetry] Add missing JSDoc

...for new parameters added to support domain/range switching
in plots, per code review on nasa/openmctweb#288
This commit is contained in:
Victor Woeltjen 2015-11-18 10:50:32 -08:00
parent 93d969ad67
commit a9518e9890

View File

@ -285,6 +285,9 @@ define(
* domain objects returned by `getTelemetryObjects()`.
*
* @param {DomainObject} domainObject the object of interest
* @param {string} [key] the symbolic identifier of the domain
* to look up; if omitted, the value for this object's
* default domain will be used
* @returns the most recent domain value observed
*/
TelemetrySubscription.prototype.getDomainValue = function (domainObject, key) {
@ -305,6 +308,9 @@ define(
* domain objects returned by `getTelemetryObjects()`.
*
* @param {DomainObject} domainObject the object of interest
* @param {string} [key] the symbolic identifier of the range
* to look up; if omitted, the value for this object's
* default range will be used
* @returns the most recent range value observed
*/
TelemetrySubscription.prototype.getRangeValue = function (domainObject, key) {