WIP refactor for new telem api

This commit is contained in:
Pete Richards
2017-05-22 18:30:01 -07:00
parent 26a7fee869
commit b60eb6d6ae
6 changed files with 109 additions and 122 deletions

View File

@@ -61,7 +61,7 @@ define([
values: [
{
name: 'Time',
key: 'time',
key: 'utc',
format: 'utc',
hints: {
domain: 1
@@ -71,7 +71,9 @@ define([
name: 'Image',
key: 'url',
format: 'image',
hints: {}
hints: {
image: 1
}
}
]
}
@@ -92,7 +94,7 @@ define([
index = 0;
}
callback({
time: Date.now(),
utc: Date.now(),
url: IMAGE_SAMPLES[index]
});
index += 1;