openmct/example/builtins/bundle.json
Victor Woeltjen b712c9a401 [Example] Add controller example
Add example showing declarative registration of
controllers with Angular. WTD-518.
2014-11-04 15:28:59 -08:00

24 lines
560 B
JSON

{
"name": "Angular Built-ins Example",
"description": "Example showing how to declare extensions with built-in support from Angular.",
"extensions": {
"controllers": [
{
"key": "ExampleController",
"implementation": "ExampleController.js",
"depends": [ "$scope" ]
}
],
"directives": [
],
"routes": [
{
"templateUrl": "templates/example.html"
}
],
"services": [
]
}
}