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

Unified Diff: example/example.html

Issue 17553018: Initial stream support (Closed) Base URL: https://github.com/dart-lang/fancy-syntax.git@master
Patch Set: address review comments 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') | no next file with comments »
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..90bd90c462d914115a1fc8f2454214b4c2d3d316 100644
--- a/example/example.html
+++ b/example/example.html
@@ -1,6 +1,6 @@
<!DOCTYPE html>
<!--
-Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
-->
@@ -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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698