mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 23:36:41 +00:00
39b3e6c4a9
[Edit Mode] Edit mode on objects that do not have a view supporting editing should edit properties instead. #320
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"name": "Plot view for telemetry",
|
|
"extensions": {
|
|
"views": [
|
|
{
|
|
"name": "Imagery",
|
|
"key": "imagery",
|
|
"glyph": "\u00E3",
|
|
"templateUrl": "templates/imagery.html",
|
|
"priority": "preferred",
|
|
"needs": [ "telemetry" ],
|
|
"editable": false
|
|
}
|
|
],
|
|
"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" ]
|
|
}
|
|
]
|
|
}
|
|
}
|