mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 06:52:24 +00:00
24 lines
666 B
JSON
24 lines
666 B
JSON
|
{
|
||
|
"name": "Scrolling Lists",
|
||
|
"description": "Time-ordered list of latest data.",
|
||
|
"extensions": {
|
||
|
"views": [
|
||
|
{
|
||
|
"key": "scrolling",
|
||
|
"name": "Scrolling",
|
||
|
"description": "Scrolling list of data values.",
|
||
|
"templateUrl": "templates/scrolling.html",
|
||
|
"needs": [ "telemetry" ],
|
||
|
"delegation": true
|
||
|
}
|
||
|
],
|
||
|
"controllers": [
|
||
|
{
|
||
|
"key": "ScrollingListController",
|
||
|
"implementation": "ScrollingListController.js",
|
||
|
"depends": [ "$scope" ]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
|
||
|
}
|