mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
2690a8b8e2
Add JSDoc to classes implementing the Imagery view, WTD-1170.
36 lines
991 B
JSON
36 lines
991 B
JSON
{
|
|
"name": "Plot view for telemetry",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"name": "Imagery",
|
|
"key": "imagery",
|
|
"glyph": "\u00E3",
|
|
"templateUrl": "templates/imagery.html",
|
|
"priority": "preferred",
|
|
"needs": [ "telemetry" ]
|
|
}
|
|
],
|
|
"policies": [
|
|
{
|
|
"category": "view",
|
|
"implementation": "policies/ImageryViewPolicy.js"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "ImageryController",
|
|
"implementation": "controllers/ImageryController.js",
|
|
"depends": [ "$scope", "telemetryHandler" ]
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctBackgroundImage",
|
|
"implementation": "directives/MCTBackgroundImage.js",
|
|
"depends": [ "$document" ]
|
|
}
|
|
]
|
|
}
|
|
}
|