mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
45 lines
1.2 KiB
JSON
45 lines
1.2 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",
|
|
"notificationService"
|
|
]
|
|
}
|
|
],
|
|
"indicators": [
|
|
{
|
|
"implementation": "DialogLaunchIndicator.js"
|
|
},
|
|
{
|
|
"implementation": "NotificationLaunchIndicator.js"
|
|
}
|
|
]
|
|
}
|
|
}
|