mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
0e840ae003
open #159 open #170 CSS, markup and JS test files initially complete; Templates renamed for consistency; message-type icons styled; Added severity constant "alert"; TO-DO: check refactored CSS against mobile, see what's broken;
59 lines
1.7 KiB
JSON
59 lines
1.7 KiB
JSON
{
|
|
"extensions": {
|
|
"constants": [
|
|
{
|
|
"key": "messageSeverity",
|
|
"value": {
|
|
"ALERT": "alert",
|
|
"ERROR": "error",
|
|
"INFO": "info",
|
|
"SUCCESS": "success"
|
|
}
|
|
}
|
|
],
|
|
"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"
|
|
},
|
|
{
|
|
"key": "overlay-blocking-message",
|
|
"templateUrl": "templates/overlay-blocking-message.html"
|
|
},
|
|
{
|
|
"key": "message",
|
|
"templateUrl": "templates/message.html"
|
|
},
|
|
{
|
|
"key": "overlay-message-list",
|
|
"templateUrl": "templates/overlay-message-list.html"
|
|
}
|
|
],
|
|
"containers": [
|
|
{
|
|
"key": "overlay",
|
|
"templateUrl": "templates/overlay.html"
|
|
}
|
|
]
|
|
}
|
|
} |