mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
d4691db8e2
Add a dialog type which presents a set of buttons for the user to choose from; will be used for Overwrite/Cancel, WTD-1033.
36 lines
1015 B
JSON
36 lines
1015 B
JSON
{
|
|
"extensions": {
|
|
"services": [
|
|
{
|
|
"key": "dialogService",
|
|
"implementation": "DialogService.js",
|
|
"depends": [ "overlayService", "$q", "$log" ]
|
|
},
|
|
{
|
|
"key": "overlayService",
|
|
"implementation": "OverlayService.js",
|
|
"depends": [ "$document", "$compile", "$rootScope" ]
|
|
}
|
|
],
|
|
"templates": [
|
|
{
|
|
"key": "overlay-dialog",
|
|
"templateUrl": "templates/overlay-dialog.html"
|
|
},
|
|
{
|
|
"key": "overlay-options",
|
|
"templateUrl": "templates/overlay-options.html"
|
|
},
|
|
{
|
|
"key": "form-dialog",
|
|
"templateUrl": "templates/dialog.html"
|
|
}
|
|
],
|
|
"containers": [
|
|
{
|
|
"key": "overlay",
|
|
"templateUrl": "templates/overlay.html"
|
|
}
|
|
]
|
|
}
|
|
} |