Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3625)

Unified Diff: example/example.html

Issue 17553018: Initial stream support (Closed) Base URL: https://github.com/dart-lang/fancy-syntax.git@master
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | example/streams/collect_key_press.html » ('j') | example/streams/collect_key_press.html » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: example/example.html
diff --git a/example/example.html b/example/example.html
index d928ac16708017b7125812d3341d7127517dc6f3..029fc2ff296db00e6f0e5886bc54db5a418caa11 100644
--- a/example/example.html
+++ b/example/example.html
@@ -17,13 +17,10 @@ BSD-style license that can be found in the LICENSE file.
<label> last name: <input value="{{ lastName }}"></label>
<div>Hello {{ getFullName() }}!</div>
<div>{{ firstName }} {{ lastName }}</div>
- <template bind="{{ firstName }}">
- <div>first name: {{ }}</div>
- </template>
<div>
<h2>Iteration</h2>
<ul>
- <template repeat="{{ item in items }}">
+ <template repeat="{{ item in items.take(2) }}">
<li>{{ item }}</li>
</template>
</ul>
« no previous file with comments | « no previous file | example/streams/collect_key_press.html » ('j') | example/streams/collect_key_press.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698