mirror of
https://github.com/nasa/openmct.git
synced 2025-01-04 12:24:10 +00:00
d304cc4343
Bring in scrolling list view from the sandbox branch in preparation for clean up, testing, and integration to complete transition of scrolling list views, WTD-534.
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" ]
|
|
}
|
|
]
|
|
}
|
|
|
|
} |