mirror of
https://github.com/nasa/openmct.git
synced 2024-12-20 21:53:08 +00:00
0cd331e8a5
Fix extension definitions related to the refactoring of GestureProvider out of the mct-representation directive. Completing work on the initial version of the representation bundle, WTD-521.
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"extensions": {
|
|
"directives": [
|
|
{
|
|
"key": "mctInclude",
|
|
"implementation": "MCTInclude.js",
|
|
"depends": [ "templates[]" ]
|
|
},
|
|
{
|
|
"key": "mctRepresentation",
|
|
"implementation": "MCTRepresentation.js",
|
|
"depends": [ "representations[]", "views[]", "gestureService", "$q", "$log" ]
|
|
}
|
|
],
|
|
"gestures": [
|
|
{
|
|
"key": "drag",
|
|
"implementation": "gestures/DragGesture.js",
|
|
"depends": [ "$log" ]
|
|
},
|
|
{
|
|
"key": "drop",
|
|
"implementation": "gestures/DropGesture.js",
|
|
"depends": [ "$q" ]
|
|
},
|
|
{
|
|
"key": "menu",
|
|
"implementation": "gestures/ContextMenuGesture.js",
|
|
"depends": [ "$compile", "$document", "$window", "$rootScope" ]
|
|
}
|
|
],
|
|
"components": [
|
|
{
|
|
"provides": "gestureService",
|
|
"type": "provider",
|
|
"implementation": "gestures/GestureProvider.js",
|
|
"depends": ["gestures[]"]
|
|
}
|
|
]
|
|
}
|
|
} |