mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 14:32:22 +00:00
48 lines
1.3 KiB
JSON
48 lines
1.3 KiB
JSON
|
{
|
||
|
"extensions": {
|
||
|
"templates": [
|
||
|
{
|
||
|
"key": "dialogLaunchTemplate",
|
||
|
"templateUrl": "dialog-launch.html"
|
||
|
},
|
||
|
{
|
||
|
"key": "notificationLaunchTemplate",
|
||
|
"templateUrl": "notification-launch.html"
|
||
|
}
|
||
|
],
|
||
|
"controllers": [
|
||
|
{
|
||
|
"key": "DialogLaunchController",
|
||
|
"implementation": "DialogLaunchController.js",
|
||
|
"depends": [
|
||
|
"$scope",
|
||
|
"$timeout",
|
||
|
"$log",
|
||
|
"dialogService",
|
||
|
"notificationService"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"key": "NotificationLaunchController",
|
||
|
"implementation": "NotificationLaunchController.js",
|
||
|
"depends": [
|
||
|
"$scope",
|
||
|
"$timeout",
|
||
|
"$log",
|
||
|
"notificationService"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"indicators": [
|
||
|
{
|
||
|
"implementation": "DialogLaunchIndicator.js",
|
||
|
"priority": "fallback"
|
||
|
},
|
||
|
{
|
||
|
"implementation": "NotificationLaunchIndicator.js",
|
||
|
"priority": "fallback"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|