From 3e57189e457e484ba8e924acea6736ff2d0d498d Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Wed, 26 Nov 2014 23:42:14 +0200 Subject: [PATCH] fix(examples): fix hello_world example (js) Added missing path mapping for the new reflection module. --- modules/examples/src/hello_world/main.es5 | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/examples/src/hello_world/main.es5 b/modules/examples/src/hello_world/main.es5 index bde7f994b1..fa129dac44 100644 --- a/modules/examples/src/hello_world/main.es5 +++ b/modules/examples/src/hello_world/main.es5 @@ -8,6 +8,7 @@ System.paths = { 'change_detection/*': './change_detection/lib/*.js', 'facade/*': './facade/lib/*.js', 'di/*': './di/lib/*.js', + 'reflection/*': './reflection/lib/*.js', 'rtts_assert/*': './rtts_assert/lib/*.js', 'examples/*': './examples/lib/*.js' };