mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 14:07:50 +00:00
Trying to figure out why requests have no 'source' property
This commit is contained in:
parent
9b11d95437
commit
183468fcbf
@ -24,12 +24,20 @@ define(
|
|||||||
function () {
|
function () {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
function ExampleTelemetySeries(data) {
|
function RemsTelemetrySeries(data) {
|
||||||
return {
|
return {
|
||||||
|
getPointCount: function(){
|
||||||
|
return 100;
|
||||||
|
},
|
||||||
|
getDomainValue: function(index) {
|
||||||
|
return index + 45 * 365 * 24 * 60 * 60 * 1000;
|
||||||
|
},
|
||||||
|
getRangeValue: function(index){
|
||||||
|
return index * 10;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return ExampleTelemetrySeries;
|
return RemsTelemetrySeries;
|
||||||
}
|
}
|
||||||
)
|
)
|
Loading…
Reference in New Issue
Block a user