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

Unified Diff: pkg/polymer/test/bind_test.html

Issue 41383002: fix binding to $ from polymer templates (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « pkg/polymer/test/bind_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/test/bind_test.html
diff --git a/pkg/polymer/test/bind_test.html b/pkg/polymer/test/bind_test.html
index 3b3970ca88a238a0e6275986fdf7bbbc0116418c..65aa6aaa69afbd50b49369339c79488bb09598d3 100644
--- a/pkg/polymer/test/bind_test.html
+++ b/pkg/polymer/test/bind_test.html
@@ -13,7 +13,7 @@ BSD-style license that can be found in the LICENSE file.
<body>
<x-foo></x-foo>
- <polymer-element name="x-bar" noscript>
+ <polymer-element name="x-bar">
<template>
x-bar
</template>
@@ -27,6 +27,9 @@ BSD-style license that can be found in the LICENSE file.
<x-bar id="bar" foo="{{foo}}" ></x-bar>
<x-bar id="barBool" foo?="{{foo}}"></x-bar>
<x-bar id="barContent">{{foo}}</x-bar>
+ <div id="bindId">
+ <template if="{{$['bar'].testValue}}">bar!</template>
+ </div>
</template>
</polymer-element>
« no previous file with comments | « pkg/polymer/test/bind_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698