angular-cn/modules/playground
Matias Niemelä 7f4954bed6 fix(animations): change trigger binding syntax to function as a property binding []
Animation triggers can now be set via template bindings `[]`

BREAKING CHANGE:

animation trigger expressions within the template that are assigned as
an element attribute (e.g. `@prop`) are deprecated. Please use the
Angular2 property binding syntax (e.g. `[@prop]`) when assigning
properties.

```ts
// this is now deprecated
<div @trigger="expression"></div>

// do this instead
<div [@trigger]="expression"></div>
```
2016-07-07 14:13:06 -07:00
..
e2e_test chore(lint): Added license headers to most TypeScript files 2016-06-23 09:47:54 -07:00
src fix(animations): change trigger binding syntax to function as a property binding [] 2016-07-07 14:13:06 -07:00
test/benchpress refactor: change provide(...) for {provide: ...} 2016-06-03 15:03:49 -07:00
README.md feat(browser): use AppModules for bootstrap in the browser 2016-07-02 20:35:09 -07:00
favicon.ico build: adding basic e2e testing infrastructure 2016-05-02 08:15:10 -07:00
pubspec.yaml cleanup(router): removes router 2016-06-20 08:47:54 -07:00

README.md

How to run the examples locally

$ cp -r ./modules/playground ./dist/all/ $ tsc -p modules --emitDecoratorMetadata -w $ gulp serve $ open http://localhost:8000/all/playground/src/hello_world/index.html?bundles=false