Skip to content

Commit b9ff3a4

Browse files
committed
Merge pull request rangle#355 from sumitarora/ks-app
reverting to old version of application and changing readme
2 parents 7ce0970 + f506bfd commit b9ff3a4

File tree

4 files changed

+8
-13
lines changed

4 files changed

+8
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Augury is a Google Chrome Dev Tools extension for debugging Angular 2 applicatio
1010

1111
## Supported Version
1212

13-
Currently works with applications built in [Angular 2.0.0-beta.16](https://github.com/angular/angular/blob/master/CHANGELOG.md#200-beta16-2016-04-26) with _limited backward compatibility_, which will change once Angular 2 stabilizes.
13+
Currently works with applications built in [Angular 2.0.0-beta.15](https://github.com/angular/angular/blob/master/CHANGELOG.md#200-beta15-2016-04-13) with _limited backward compatibility_, which will change once Angular 2 stabilizes.
1414

1515
## Join Our Slack Team
1616

example-apps/kitchen-sink-example/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"devDependencies": {},
99
"dependencies": {
10-
"angular2": "2.0.0-beta.16",
10+
"angular2": "2.0.0-beta.15",
1111
"core-js": "^2.2.1",
1212
"css-loader": "^0.21.0",
1313
"d3": "^3.5.16",
@@ -19,7 +19,7 @@
1919
"raw-loader": "^0.5.1",
2020
"reflect-metadata": "0.1.2",
2121
"rimraf": "^2.4.3",
22-
"rxjs": "^5.0.0-beta.2",
22+
"rxjs": "^5.0.0-beta.6",
2323
"style-loader": "^0.13.0",
2424
"ts-loader": "^0.8.2",
2525
"tslint": "^3.8.1",
@@ -29,6 +29,6 @@
2929
"url-loader": "^0.5.6",
3030
"webpack": "^1.13.0",
3131
"webpack-dev-server": "^1.14.1",
32-
"zone.js": "^0.6.12"
32+
"zone.js": "^0.6.11"
3333
}
3434
}

example-apps/kitchen-sink-example/source/app.ts

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
// Load Global Styles
2-
import {ROUTER_PROVIDERS} from 'angular2/router';
3-
4-
import {
5-
LocationStrategy,
6-
HashLocationStrategy,
7-
APP_BASE_HREF}
8-
from 'angular2/platform/common';
2+
import {ROUTER_PROVIDERS, LocationStrategy,
3+
HashLocationStrategy, APP_BASE_HREF} from 'angular2/router';
94

105
import {provide} from 'angular2/core';
116
import {FORM_DIRECTIVES} from 'angular2/common';

example-apps/kitchen-sink-example/source/components/dynamic-controls/load-next-to-component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {Component, DynamicComponentLoader, ViewContainerRef}
1+
import {Component, DynamicComponentLoader, ElementRef}
22
from 'angular2/core';
33
import DynamicComponent from './dynamic-component';
44
import Hello from './hello';
@@ -18,7 +18,7 @@ import Hello from './hello';
1818
export default class LoadNextToComponent {
1919
constructor(
2020
private dcl: DynamicComponentLoader,
21-
private elementRef: ViewContainerRef) { }
21+
private elementRef: ElementRef) { }
2222

2323
loadComponent() {
2424
this.dcl.loadNextToLocation(DynamicComponent, this.elementRef)

0 commit comments

Comments
 (0)