We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390aacd commit 283415bCopy full SHA for 283415b
modules/angular2/angular2_sfx.ts
@@ -1,15 +1,17 @@
1
import * as ng from './angular2';
2
-// the router should have its own SFX bundle
3
-// But currently the module arithmetic 'angular2/router_sfx - angular2/angular2',
+// the router and http should have their own SFX bundle
+// But currently the module arithemtic 'angular2/router_sfx - angular2/angular2',
4
// is not support by system builder.
5
import * as router from './router';
6
+import * as http from './http';
7
8
var _prevNg = (<any>window).ng;
9
10
(<any>window).ng = ng;
11
12
13
(<any>window).ngRouter = router;
14
+(<any>window).ngHttp = http;
15
/**
16
* Calling noConflict will restore window.angular to its pre-angular loading state
17
* and return the angular module object.
0 commit comments