mirror of
https://github.com/nasa/openmct.git
synced 2024-12-25 07:41:06 +00:00
28 lines
556 B
JavaScript
28 lines
556 B
JavaScript
define([
|
|
'openmct'
|
|
], function (
|
|
openmct
|
|
) {
|
|
openmct.legacyRegistry.register("platform/features/imagery-timeline", {
|
|
"name" : "Imagery Timeline",
|
|
"description": "Provides a timeline view of imagery telemetry.",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"name": "Imagery Timeline",
|
|
"key": "imagery.timeline",
|
|
"cssClass": "icon-image",
|
|
"templateUrl": "templates/timeline.html",
|
|
"needs": [ "telemetry" ],
|
|
"delegation": true
|
|
}
|
|
],
|
|
"stylesheets": [
|
|
{
|
|
"stylesheetUrl": "css/timeline.css"
|
|
}
|
|
]
|
|
}
|
|
})
|
|
|
|
}); |