From 096e5f081b63154a4bd57e1f908a4b48b49f98ab Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 10 Nov 2015 10:42:54 +0000 Subject: [PATCH] api-web-app: update `cheatsheet.json` from latest angular2 code --- public/resources/js/cheatsheet.json | 465 +--------------------------- 1 file changed, 1 insertion(+), 464 deletions(-) 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": "