Skip to content

Commit 53fe0fa

Browse files
valorkinmhevery
authored andcommitted
Fix changelog before\after sample
display correctly `feat(core): remove the (^ syntax and make all DOM events bubbling` sample Closes angular#4491
1 parent e3c9397 commit 53fe0fa

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -374,13 +374,17 @@ This is not the case any more. To access that binding, remove the constraint.
374374
[remove the (^ syntax and make all DOM events bubbling)](https://github.com/angular/angular/commit/60ce8846710338228bc7db3d3c808c166e15e931)
375375

376376
* Before
377+
```html
377378
<div (^click)="onEventHandler()">
378379
<button></button>
379380
</div>
381+
```
380382
* After
383+
```html
381384
<div (click)="onEventHandler()">
382385
<button></button>
383386
</div>
387+
```
384388

385389
#### Properties/Events (Inputs/Outputs)
386390

0 commit comments

Comments
 (0)