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

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

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 5 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="observatory_element.html"> 2
3 <link rel="import" href="service_ref.html"> 3 <link rel="import" href="service_ref.html">
4 4
5 <polymer-element name="script-ref" extends="service-ref"> 5 <polymer-element name="script-ref">
6 <template> 6 <template>
7 <link rel="stylesheet" href="css/shared.css"> 7 <link rel="stylesheet" href="css/shared.css">
8 <a on-click="{{ goto }}" title="{{ hoverText }}" _href="{{ url }}">{{ name }}< /a> 8 <a on-click="{{ goto }}" title="{{ hoverText }}" _href="{{ url }}">{{ name }}< /a>
9 </template> 9 </template>
10 </polymer-element> 10 </polymer-element>
11 11
12 <polymer-element name="source-link"> 12 <polymer-element name="source-link">
13 <template> 13 <template>
14 <template if="{{ location != null }}"> 14 <template if="{{ location != null }}">
15 <script-ref ref="{{ location.script }}" 15 <script-ref ref="{{ location.script }}"
16 pos="{{ location.tokenPos }}"></script-ref> 16 pos="{{ location.tokenPos }}"></script-ref>
17 </template> 17 </template>
18 </template> 18 </template>
19 </polymer-element> 19 </polymer-element>
20 20
21 21
22 <script type="application/dart" src="script_ref.dart"></script> 22 <script type="application/dart" src="script_ref.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.html ('k') | runtime/observatory/lib/src/elements/script_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698