mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
[Edit Mode] Edit mode on objects that do not have a view supporting editing should edit properties instead. #320
This commit is contained in:
parent
89a93e2966
commit
de256835fd
@ -54,11 +54,13 @@
|
|||||||
{
|
{
|
||||||
"key": "clock",
|
"key": "clock",
|
||||||
"type": "clock",
|
"type": "clock",
|
||||||
|
"editable": false,
|
||||||
"templateUrl": "templates/clock.html"
|
"templateUrl": "templates/clock.html"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"key": "timer",
|
"key": "timer",
|
||||||
"type": "timer",
|
"type": "timer",
|
||||||
|
"editable": false,
|
||||||
"templateUrl": "templates/timer.html"
|
"templateUrl": "templates/timer.html"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -8,7 +8,8 @@
|
|||||||
"glyph": "\u00E3",
|
"glyph": "\u00E3",
|
||||||
"templateUrl": "templates/imagery.html",
|
"templateUrl": "templates/imagery.html",
|
||||||
"priority": "preferred",
|
"priority": "preferred",
|
||||||
"needs": [ "telemetry" ]
|
"needs": [ "telemetry" ],
|
||||||
|
"editable": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"policies": [
|
"policies": [
|
||||||
|
@ -23,7 +23,8 @@
|
|||||||
"templateUrl": "iframe.html",
|
"templateUrl": "iframe.html",
|
||||||
"name": "Page",
|
"name": "Page",
|
||||||
"type": "example.page",
|
"type": "example.page",
|
||||||
"key": "example.page"
|
"key": "example.page",
|
||||||
|
"editable": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"controllers": [
|
"controllers": [
|
||||||
|
@ -9,7 +9,8 @@
|
|||||||
"templateUrl": "templates/plot.html",
|
"templateUrl": "templates/plot.html",
|
||||||
"needs": [ "telemetry" ],
|
"needs": [ "telemetry" ],
|
||||||
"priority": "preferred",
|
"priority": "preferred",
|
||||||
"delegation": true
|
"delegation": true,
|
||||||
|
"editable": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"directives": [
|
"directives": [
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
"description": "Scrolling list of real time messages.",
|
"description": "Scrolling list of real time messages.",
|
||||||
"templateUrl": "templates/rtmessages.html",
|
"templateUrl": "templates/rtmessages.html",
|
||||||
"needs": [ "telemetry" ],
|
"needs": [ "telemetry" ],
|
||||||
|
"editable": false,
|
||||||
"delegation": true
|
"delegation": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
"description": "Scrolling list of data values.",
|
"description": "Scrolling list of data values.",
|
||||||
"templateUrl": "templates/rtscrolling.html",
|
"templateUrl": "templates/rtscrolling.html",
|
||||||
"needs": [ "telemetry" ],
|
"needs": [ "telemetry" ],
|
||||||
|
"editable": false,
|
||||||
"delegation": true
|
"delegation": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -10,7 +10,8 @@
|
|||||||
"description": "Scrolling list of data values.",
|
"description": "Scrolling list of data values.",
|
||||||
"templateUrl": "templates/scrolling.html",
|
"templateUrl": "templates/scrolling.html",
|
||||||
"needs": [ "telemetry" ],
|
"needs": [ "telemetry" ],
|
||||||
"delegation": true
|
"delegation": true,
|
||||||
|
"editable": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"controllers": [
|
"controllers": [
|
||||||
|
Loading…
Reference in New Issue
Block a user