Chromium Code Reviews| Index: src/site/docs/tutorials/web-ui/index.markdown |
| diff --git a/src/site/docs/tutorials/web-ui/index.markdown b/src/site/docs/tutorials/web-ui/index.markdown |
| index 13e6a3bb004b41ef73069a7bc4dae7a7cc439e4d..9fd2eb926356928079ec6fed65c77b0344461c56 100644 |
| --- a/src/site/docs/tutorials/web-ui/index.markdown |
| +++ b/src/site/docs/tutorials/web-ui/index.markdown |
| @@ -26,15 +26,31 @@ Get the source code for the samples featured in this target:</p> |
| <ul> |
| <li> |
| <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06/littleben" |
| - target="_blank">littleben</a> |
| + target="_blank">littleben</a> (web_ui) |
| + </li> |
| + <li> |
| + <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/littleben" |
| + target="_blank">littleben</a> (polymer) |
| + </li> |
| + <li> |
| + <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/petiteben" |
| + target="_blank">petiteben</a> (polymer) |
| </li> |
| <li> |
| <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06/shout" |
| - target="_blank">shout</a> |
| + target="_blank">shout</a> (web_ui) |
| + </li> |
| + <li> |
| + <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/shout" |
| + target="_blank">shout</a> (polymer) |
| </li> |
| <li> |
| <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06/stopwatch" |
| - target="_blank">stopwatch</a> |
| + target="_blank">stopwatch</a> (web_ui) |
| + </li> |
| + <li> |
| + <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/stopwatch" |
| + target="_blank">stopwatch</a> (polymer) |
| </li> |
| </ul> |
| @@ -54,11 +70,20 @@ Get the source code for the samples featured in this target:</p> |
| a port of the Polymer project: |
| <a href="http://pub.dartlang.org/packages/polymer">polymer.dart</a>. |
| - Here are a few samples that we've converted to Polymer so far: |
| + We've converted most of the tutorial Web UI examples and compiled some |
| + <a href="https://github.com/dart-lang/dart-tutorials-samples/blob/master/web/to-polymer-notes.txt" target="_blank">notes</a> |
| + along the way. |
| + Here is source code for the polymer versions of the three examples from this target. |
| + The littleben sample shows two different ways you can write the conversion—one |
|
Kathy Walrath
2013/07/22 18:07:02
I'd remove the sentence about littleben from the b
|
| + using a custom component and one using a template with a programmatically bound model. |
| <ul> |
| <li> |
| <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/littleben" |
| - target="_blank">littleben</a> |
| + target="_blank">littleben</a> with custom component |
|
Kathy Walrath
2013/07/22 18:07:02
with custom component
->
: version with a custom c
|
| + </li> |
| + <li> |
| + <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/petiteben" |
| + target="_blank">petiteben</a> with bound model |
|
Kathy Walrath
2013/07/22 18:07:02
with bound model ->
: littleben version with a bou
|
| </li> |
| <li> |
| <a href="https://github.com/dart-lang/dart-tutorials-samples/tree/master/web/target06-polymer/shout" |