From 0cd331e8a5aba027715434cbc186c183c67ad436 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Sun, 23 Nov 2014 15:35:53 -0800 Subject: [PATCH] [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. --- platform/representation/bundle.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/platform/representation/bundle.json b/platform/representation/bundle.json index 85939333f1..548f287656 100644 --- a/platform/representation/bundle.json +++ b/platform/representation/bundle.json @@ -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[]"] } ] }