Skip to content

Commit 3868f5c

Browse files
committed
Fix #8
1 parent 0dacfb6 commit 3868f5c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/counter/components/Counter.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ import {Component, View} from 'angular2/angular2';
1414
template: `
1515
<p>
1616
Clicked: {{ counter }} times
17-
<button (^click)="increment()">+</button>
18-
<button (^click)="decrement()">-</button>
19-
<button (^click)="incrementIfOdd()">Increment if odd</button>
20-
<button (^click)="incrementAsync()">Increment async</button>
17+
<button (click)="increment()">+</button>
18+
<button (click)="decrement()">-</button>
19+
<button (click)="incrementIfOdd()">Increment if odd</button>
20+
<button (click)="incrementAsync()">Increment async</button>
2121
</p>
2222
`
2323
})

examples/counter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
},
2323
"homepage": "https://github.com/wbuchwalter/ng2-redux#readme",
2424
"dependencies": {
25-
"angular2": "2.0.0-alpha.30",
25+
"angular2": "2.0.0-alpha.37",
2626
"ng2-redux": "2.0.0-alpha.3",
2727
"react": "^0.13.3",
2828
"redux": "^3.0.0",

0 commit comments

Comments
 (0)