X Tutup
Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions modules/angular2/angular2_sfx.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
import * as ng from './angular2';
// the router should have its own SFX bundle
// 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',
// is not support by system builder.
import * as router from './router';
import * as http from './http';

var _prevNg = (<any>window).ng;

(<any>window).ng = ng;


(<any>window).ngRouter = router;
(<any>window).ngHttp = http;
/**
* Calling noConflict will restore window.angular to its pre-angular loading state
* and return the angular module object.
Expand Down
X Tutup