45 lines
1.3 KiB
JSON
Raw Normal View History

2015-10-06 14:45:10 -07:00
{
"extensions": {
"constants": [
{
"key": "DEFAULT_AUTO_DISMISS",
"value": 3000
2015-10-09 15:27:40 -07:00
},
{
"key": "FORCE_AUTO_DISMISS",
"value": 1000
2015-10-06 14:45:10 -07:00
}
],
2015-10-10 11:28:19 -07:00
"templates": [
{
"key":"notificationIndicatorTemplate",
"templateUrl": "notification-indicator.html"
}
],
2015-10-09 14:17:55 -07:00
"controllers": [
{
"key": "MessageController",
"implementation": "MessageController.js",
"depends": ["$scope"]
2015-10-10 11:28:19 -07:00
},
{
"key": "NotificationIndicatorController",
"implementation": "NotificationIndicatorController.js",
"depends": ["$scope", "notificationService", "dialogService"]
}
],
"indicators": [
{
"implementation": "NotificationIndicator.js"
2015-10-09 14:17:55 -07:00
}
],
2015-10-06 14:45:10 -07:00
"services": [
{
"key": "notificationService",
"implementation": "NotificationService.js",
2015-10-09 15:27:40 -07:00
"depends": [ "$timeout", "DEFAULT_AUTO_DISMISS",
"FORCE_AUTO_DISMISS" ]
2015-10-06 14:45:10 -07:00
}
]
}
}