mirror of
https://github.com/nasa/openmct.git
synced 2025-01-18 10:46:42 +00:00
c057ba38a5
Add directive which can be used to include certain elements only on specific devices.
27 lines
714 B
JSON
27 lines
714 B
JSON
{
|
|
"extensions": {
|
|
"controllers": [
|
|
{
|
|
"key": "BrowseTreeController",
|
|
"implementation": "MobileBrowseTreeController.js",
|
|
"priority": "preferred",
|
|
"depends": [ "$scope", "navigationService", "agentService" ]
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctDevice",
|
|
"implementation": "MCTDevice.js",
|
|
"depends": [ "agentService" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "agentService",
|
|
"implementation": "AgentService.js",
|
|
"depends": [ "$window" ]
|
|
}
|
|
]
|
|
}
|
|
}
|