mirror of
https://github.com/nasa/openmct.git
synced 2025-03-10 22:43:55 +00:00
Created an mct-data-table directive. We are able to detect changes in the height of the table now, which will be used to determine any corresponding scrolling. #18.
32 lines
907 B
JSON
32 lines
907 B
JSON
{
|
|
"name": "Event Messages",
|
|
"description": "List of time-ordered event messages",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"key": "messages",
|
|
"name": "Messages",
|
|
"glyph": "5",
|
|
"description": "Scrolling list of messages.",
|
|
"templateUrl": "templates/messages.html",
|
|
"needs": [ "telemetry" ],
|
|
"delegation": true
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "EventListController",
|
|
"implementation": "EventListController.js",
|
|
"depends": [ "$scope", "telemetryFormatter" ]
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctDataTable",
|
|
"implementation": "MCTDataTable.js",
|
|
"depends": [ "$anchorScroll" ]
|
|
}
|
|
]
|
|
}
|
|
|
|
} |