Vladislav Zarakovsky
cab69f689f
docs(cheatsheet): fix typo in <template> syntax description
...
Closes #6051
2015-12-23 02:57:47 +00:00
Kathy Walrath
3fd898e91f
docs(cheatsheet): copyedit
...
Fixed a few little things. I'll probably have more changes to make later, once I understand everything better.
Also added a missing syntax line.
Closes #5806
2015-12-11 18:41:57 +00:00
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
Peter Bacon Darwin
2f0744b089
docs(cheatsheet): update to new syntax
...
See https://github.com/angular/angular.io/pull/459
Closes #5733
2015-12-09 19:04:08 +00:00
Peter Bacon Darwin
c03fb36e11
docs(cheatsheet): add missing bootstrapping section
...
Closes #5269
Closes #5269
2015-11-16 23:15:03 +00:00