From d080a67b43f76a9565a59f16ae7d1d987dcaf0ec Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Fri, 21 Nov 2014 18:48:10 -0800 Subject: [PATCH] [Core] Workaround require quirk Work around quirk of require; it does not like to see the same script twice with and with a .js, so remove the .js extension from the bundle definition. WTD-573. --- platform/core/bundle.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/core/bundle.json b/platform/core/bundle.json index 0bab37034f..393fe40e6b 100644 --- a/platform/core/bundle.json +++ b/platform/core/bundle.json @@ -19,7 +19,7 @@ { "provides": "modelService", "type": "provider", - "implementation": "models/StaticModelProvider.js", + "implementation": "models/StaticModelProvider", "depends": [ "models[]", "$q", "$log" ] }, {