angular-cn/modules/playground/e2e_test
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
..
async chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
hash_routing refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
hello_world chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
http chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
jsonp chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
key_events chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
material feat: camelCase Angular (kebab-case removal) 2015-12-09 19:59:40 -08:00
model_driven_forms chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
order_management chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
person_management chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
relative_assets feat(core): provide support for relative assets for components 2015-12-09 16:28:49 -08:00
routing refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
sourcemap fix(build): fix source maps 2015-11-24 19:33:27 +00:00
svg fix(compiler): support properties on SVG elements 2015-12-08 02:18:07 +00:00
template_driven_forms chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00
web_workers refactor(core): move facades out of core 2015-11-07 01:36:06 +00:00
zippy_component chore: rename modules/examples to modules/playground 2015-10-18 11:48:43 +00:00