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

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

Issue 2265513003: Converted Observatory object-common element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed typos 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
(Empty)
1 <link rel="import" href="../../../../packages/polymer/polymer.html">
2 <link rel="import" href="service_ref.html">
3
4 <polymer-element name="inbound-reference">
5 <template>
6 <link rel="stylesheet" href="css/shared.css">
7 <div>
8 <template if="{{ ref['parentField'] != null }}">
9 from <any-service-ref ref="{{ ref['parentField'] }}"></any-service-ref>
10 </template>
11 <template if="{{ ref['parentListIndex'] != null }}">
12 from [{{ ref['parentListIndex'] }}] of
13 </template>
14 <template if="{{ ref['_parentWordOffset'] != null }}">
15 from word[{{ ref['_parentWordOffset'] }}] of
16 </template>
17 <any-service-ref ref="{{ ref['source'] }}"></any-service-ref>
18 <curly-block callback="{{ expander() }}">
19 <div class="memberList">
20 <div class="memberItem">
21 <div class="memberName">
22 <template repeat="{{ reference in inboundReferences }}">
23 <inbound-reference ref="{{ reference }}"></inbound-reference>
24 </template>
25 </div>
26 </div>
27 </div>
28 </curly-block>
29 </div>
30 </template>
31 </polymer-element>
32
33 <script type="application/dart" src="inbound_reference.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698