open #163 open #170 Squashed commit of the following: commitec7edb58caAuthor: Henry <akhenry@aitutaki.ndc.nasa.gov> Date: Mon Oct 5 10:39:06 2015 -0700 Rename dialogSeverity to messageServity for reuse with notifications commitd20abe01ddAuthor: Henry <akhenry@aitutaki.ndc.nasa.gov> Date: Fri Oct 2 16:40:29 2015 -0700 Fixed docs commit227da18498Author: Henry <akhenry@aitutaki.ndc.nasa.gov> Date: Fri Oct 2 16:27:41 2015 -0700 Added semicolon commit22d424f96eAuthor: Henry <akhenry@aitutaki.ndc.nasa.gov> Date: Fri Oct 2 16:26:29 2015 -0700 Fixed code errors commit2c77c3647cAuthor: Henry <akhenry@aitutaki.ndc.nasa.gov> Date: Fri Oct 2 16:24:01 2015 -0700 Initial commit of blocking dialog service with test code to demonstrate usage
50 lines
1.4 KiB
JSON
50 lines
1.4 KiB
JSON
{
|
|
"extensions": {
|
|
"constants": [
|
|
{
|
|
"key": "messageSeverity",
|
|
"value": {
|
|
"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": "blocking-message",
|
|
"templateUrl": "templates/blocking-message.html"
|
|
}
|
|
],
|
|
"containers": [
|
|
{
|
|
"key": "overlay",
|
|
"templateUrl": "templates/overlay.html"
|
|
}
|
|
]
|
|
}
|
|
} |