X Tutup
Skip to content
Closed
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions modules/angular2/src/core/application_ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ export abstract class PlatformRef {
export class PlatformRef_ extends PlatformRef {
/** @internal */
_applications: ApplicationRef[] = [];
/** @internal */
_disposeListeners: Function[] = [];

constructor(private _injector: Injector, private _dispose: () => void) { super(); }
Expand Down
3 changes: 3 additions & 0 deletions modules/angular2/src/core/zone/ng_zone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ export class NgZone {
*/
get onTurnStart(): /* Subject */ any { return this._onTurnStartEvents; }

/** @internal */
_notifyOnTurnStart(parentRun): void {
parentRun.call(this._innerZone, () => { this._onTurnStartEvents.next(null); });
}
Expand Down Expand Up @@ -213,6 +214,7 @@ export class NgZone {
*/
get onTurnDone() { return this._onTurnDoneEvents; }

/** @internal */
_notifyOnTurnDone(parentRun): void {
parentRun.call(this._innerZone, () => { this._onTurnDoneEvents.next(null); });
}
Expand Down Expand Up @@ -251,6 +253,7 @@ export class NgZone {
*/
get onEventDone() { return this._onEventDoneEvents; }

/** @internal */
_notifyOnEventDone(): void {
this.runOutsideAngular(() => { this._onEventDoneEvents.next(null); });
}
Expand Down
1 change: 1 addition & 0 deletions modules/angular2/src/router/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,7 @@ export class Router {
export class RootRouter extends Router {
/** @internal */
_location: Location;
/** @internal */
_locationSub: Object;

constructor(registry: RouteRegistry, location: Location, primaryComponent: Type) {
Expand Down
X Tutup