angular-cn/modules/angular2/docs
Victor Berchet da9b46a071 feat: camelCase Angular (kebab-case removal)
BREAKING CHANGE:

Angular is now fully camel case.

Before:

    <p *ng-if="cond">
    <my-cmp [my-prop]="exp">
    <my-cmp (my-event)="action()">
    <my-cmp [(my-prop)]="prop">
    <input #my-input>
    <template ng-for #my-item [ng-for-of]=items #my-index="index">

After

    <p *ngIf="cond">
    <my-cmp [myProp]="exp">
    <my-cmp (myEvent)="action()">
    <my-cmp [(myProp)]="prop">
    <input #myInput>`,
    <template ngFor="#my-item" [ngForOf]=items #myIndex="index">

The full details are found in [angular2/docs/migration/kebab-case.md](https://github.com/angular/angular/blob/master/modules/angular2/docs/migration/kebab-case.md)
2015-12-09 19:59:40 -08:00
..
change_detection docs(change_detection): add explicit @name and @description 2015-02-17 08:08:47 +00:00
cheatsheet feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
core feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
di feat(di): rename Binding into Provider 2015-10-11 05:13:31 +00:00
migration doc(camelCase Angular): migration guide 2015-12-09 19:59:40 -08:00
web_workers refactor(WebWorker): Use the new generic bootstrap. 2015-12-03 19:51:43 +00:00