Trying to figure out why requests have no 'source' property

This commit is contained in:
Andrew Henry 2015-10-10 12:17:30 -07:00
parent 9b11d95437
commit 183468fcbf

View File

@ -24,12 +24,20 @@ define(
function () {
"use strict";
function ExampleTelemetySeries(data) {
function RemsTelemetrySeries(data) {
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;
}
)