mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 22:17:49 +00:00
3d0795cde3
Added check to make sure user is touching only one object. Started contextmenugesture to be long touch, however currently long touch is still infogesture.
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
{
|
|
"extensions": {
|
|
"directives": [
|
|
{
|
|
"key": "mctInclude",
|
|
"implementation": "MCTInclude.js",
|
|
"depends": [ "templates[]", "$sce" ]
|
|
},
|
|
{
|
|
"key": "mctRepresentation",
|
|
"implementation": "MCTRepresentation.js",
|
|
"depends": [ "representations[]", "views[]", "representers[]", "$q", "$sce", "$log" ]
|
|
}
|
|
],
|
|
"gestures": [
|
|
{
|
|
"key": "drag",
|
|
"implementation": "gestures/DragGesture.js",
|
|
"depends": [ "$log", "dndService" ]
|
|
},
|
|
{
|
|
"key": "drop",
|
|
"implementation": "gestures/DropGesture.js",
|
|
"depends": [ "dndService", "$q" ]
|
|
},
|
|
{
|
|
"key": "menu",
|
|
"implementation": "gestures/ContextMenuGesture.js",
|
|
"depends": [ "$timeout", "$compile", "$document", "$window", "$rootScope", "queryService" ]
|
|
}
|
|
],
|
|
"components": [
|
|
{
|
|
"provides": "gestureService",
|
|
"type": "provider",
|
|
"implementation": "gestures/GestureProvider.js",
|
|
"depends": ["gestures[]"]
|
|
}
|
|
],
|
|
"representers": [
|
|
{
|
|
"implementation": "gestures/GestureRepresenter.js",
|
|
"depends": [ "gestureService" ]
|
|
}
|
|
],
|
|
"services": [
|
|
{
|
|
"key": "dndService",
|
|
"implementation": "services/DndService.js",
|
|
"depends": [ "$log" ]
|
|
}
|
|
]
|
|
}
|
|
}
|