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

Side by Side Diff: runtime/observatory/lib/src/elements/inbound_reference.html

Issue 2244433003: Converted Observatory refs elements (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: All element tested Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> 1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="field_ref.html">
3
4 <link rel="import" href="service_ref.html"> 2 <link rel="import" href="service_ref.html">
5 3
6 <polymer-element name="inbound-reference"> 4 <polymer-element name="inbound-reference">
7 <template> 5 <template>
8 <link rel="stylesheet" href="css/shared.css"> 6 <link rel="stylesheet" href="css/shared.css">
9 <div> 7 <div>
10 <template if="{{ ref['parentField'] != null }}"> 8 <template if="{{ ref['parentField'] != null }}">
11 from <any-service-ref ref="{{ ref['parentField'] }}"></any-service-ref> 9 from <any-service-ref ref="{{ ref['parentField'] }}"></any-service-ref>
12 </template> 10 </template>
13 <template if="{{ ref['parentListIndex'] != null }}"> 11 <template if="{{ ref['parentListIndex'] != null }}">
(...skipping 12 matching lines...) Expand all
26 </template> 24 </template>
27 </div> 25 </div>
28 </div> 26 </div>
29 </div> 27 </div>
30 </curly-block> 28 </curly-block>
31 </div> 29 </div>
32 </template> 30 </template>
33 </polymer-element> 31 </polymer-element>
34 32
35 <script type="application/dart" src="inbound_reference.dart"></script> 33 <script type="application/dart" src="inbound_reference.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698