[Representation] Fix gesture-related definitions

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.
This commit is contained in:
Victor Woeltjen 2014-11-23 15:35:53 -08:00
parent f89402132b
commit 0cd331e8a5

View File

@ -9,7 +9,7 @@
{
"key": "mctRepresentation",
"implementation": "MCTRepresentation.js",
"depends": [ "representations[]", "views[]", "gestures[]", "$q", "$log" ]
"depends": [ "representations[]", "views[]", "gestureService", "$q", "$log" ]
}
],
"gestures": [
@ -33,7 +33,8 @@
{
"provides": "gestureService",
"type": "provider",
"implementation": "gestures/GestureProvider.js"
"implementation": "gestures/GestureProvider.js",
"depends": ["gestures[]"]
}
]
}