diff --git a/public/resources/js/cheatsheet.json b/public/resources/js/cheatsheet.json index dac540d788..0637a088a0 100644 --- a/public/resources/js/cheatsheet.json +++ b/public/resources/js/cheatsheet.json @@ -1,464 +1 @@ -[ - { - "name": "Bootstrapping", - "description": "

import {bootstrap} from 'angular2/angular2';

\n", - "items": [ - { - "syntax": "", - "bold": [ - "[value]" - ], - "description": "

Binds property value to the result of expression firstName.

\n" - }, - { - "syntax": "
", - "bold": [ - "[attr.role]" - ], - "description": "

Binds attribute role to the result of expression myAriaRole.

\n" - }, - { - "syntax": "
", - "bold": [ - "[class.extra-sparkle]" - ], - "description": "

Binds the presence of the css class extra-sparkle on the element to the truthiness of the expression isDelightful.

\n" - }, - { - "syntax": "
", - "bold": [ - "[style.width.px]" - ], - "description": "

Binds style property width to the result of expression mySize in pixels. Units are optional.

\n" - }, - { - "syntax": "