openmct/platform/commonUI/mobile/bundle.json
Victor Woeltjen c057ba38a5 [Mobile] Add mct-device directive
Add directive which can be used to include certain elements
only on specific devices.
2015-09-18 12:13:37 -07:00

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" ]
}
]
}
}