Skip to content

Commit 0b26f2d

Browse files
committed
angular2-2.0.0-alpha.37
1 parent 76ed26e commit 0b26f2d

9 files changed

+21890
-583
lines changed

angular2/angular2-2.0.0-alpha.37.d.ts

Lines changed: 12214 additions & 0 deletions
Large diffs are not rendered by default.

angular2/angular2-tests.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Cmp {
1616
Cmp.annotations = [
1717
Component({
1818
selector: 'cmp',
19-
injectables: [Service, bind(Service2).toValue(null)]
19+
bindings: [Service, bind(Service2).toValue(null)]
2020
}),
2121
View({
2222
template: '{{greeting}} world!',
@@ -27,9 +27,9 @@ Cmp.annotations = [
2727
properties: [
2828
'text: tooltip'
2929
],
30-
hostListeners: {
31-
'onmouseenter': 'onMouseEnter()',
32-
'onmouseleave': 'onMouseLeave()'
30+
host: {
31+
'(onmouseenter)': 'onMouseEnter()',
32+
'(onmouseleave)': 'onMouseLeave()'
3333
}
3434
})
3535
];

0 commit comments

Comments
 (0)