[Edit Mode] Edit mode on objects that do not have a view supporting editing should edit properties instead. #320

This commit is contained in:
Henry 2015-12-09 15:51:00 -08:00
parent 89a93e2966
commit de256835fd
7 changed files with 12 additions and 4 deletions

View File

@ -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"
} }
], ],

View File

@ -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": [

View File

@ -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": [

View File

@ -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": [

View File

@ -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
} }
], ],

View File

@ -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
} }
], ],

View File

@ -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": [