From c03fb36e11a2720368066197d83933fd02707cc4 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 13 Nov 2015 07:14:12 +0000 Subject: [PATCH] docs(cheatsheet): add missing bootstrapping section Closes #5269 Closes #5269 --- .../angular2/docs/cheatsheet/bootstrapping.md | 52 +---------------- .../docs/cheatsheet/built-in-directives.md | 2 +- .../docs/cheatsheet/class-decorators.md | 2 +- .../cheatsheet/component-configuration.md | 2 +- .../docs/cheatsheet/dependency-injection.md | 2 +- .../directive-and-component-decorators.md | 2 +- .../cheatsheet/directive-configuration.md | 2 +- modules/angular2/docs/cheatsheet/forms.md | 2 +- .../docs/cheatsheet/lifecycle hooks.md | 2 +- modules/angular2/docs/cheatsheet/routing.md | 2 +- .../docs/cheatsheet/template-syntax.md | 56 +++++++++++++++++++ 11 files changed, 67 insertions(+), 59 deletions(-) create mode 100644 modules/angular2/docs/cheatsheet/template-syntax.md diff --git a/modules/angular2/docs/cheatsheet/bootstrapping.md b/modules/angular2/docs/cheatsheet/bootstrapping.md index cbf61c78e4..1dbf6e059b 100644 --- a/modules/angular2/docs/cheatsheet/bootstrapping.md +++ b/modules/angular2/docs/cheatsheet/bootstrapping.md @@ -5,53 +5,5 @@ Bootstrapping `import {bootstrap} from 'angular2/angular2';` @cheatsheetItem -``|`[value]` -Binds property `value` to the result of expression `firstName`. - -@cheatsheetItem -`
`|`[attr.role]` -Binds attribute `role` to the result of expression `myAriaRole`. - -@cheatsheetItem -`
`|`[class.extra-sparkle]` -Binds the presence of the css class `extra-sparkle` on the element to the truthiness of the expression `isDelightful`. - -@cheatsheetItem -`
`|`[style.width.px]` -Binds style property `width` to the result of expression `mySize` in pixels. Units are optional. - -@cheatsheetItem -`