From 29c77df4be4cd873d0a519e93c8c23be09ad4c1c Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Tue, 24 May 2016 17:10:30 -0700 Subject: [PATCH] fix(playground): fix WebWorker single_thread example --- modules/playground/src/bootstrap.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/playground/src/bootstrap.ts b/modules/playground/src/bootstrap.ts index 1c69c2dbc3..bcc91ef2a8 100644 --- a/modules/playground/src/bootstrap.ts +++ b/modules/playground/src/bootstrap.ts @@ -27,7 +27,7 @@ declare var System: any; '@angular/router': '/packages-dist/router/bundles/router.umd.js', '@angular/router-deprecated': '/packages-dist/router-deprecated/bundles/router-deprecated.umd.js', '@angular/core/src/facade': '/all/@angular/core/src/facade', - 'rxjs': location.pathname.replace(/index\.html$/, '') + 'rxjs' + 'rxjs': location.pathname.replace(/\w+\.html$/i, '') + 'rxjs' }, packages: { 'app': {defaultExtension: 'js'},