mirror of
https://github.com/nasa/openmct.git
synced 2025-02-22 18:12:57 +00:00
Changed scrollDirection to ascendingScroll, which acts like a boolean. Now there is proper communication between the html and the directive itself. #18.
32 lines
918 B
JSON
32 lines
918 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": "directives/MCTDataTable.js",
|
|
"depends": [ "$anchorScroll" ]
|
|
}
|
|
]
|
|
}
|
|
|
|
} |