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

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

Issue 2202973002: Converted Observatory isolate-reconnect element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed typo 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
3 <polymer-element name="isolate-reconnect">
4 <template>
5 <link rel="stylesheet" href="css/shared.css">
6 <style>
7 .doubleSpaced {
8 line-height: 2em;
9 }
10 </style>
11
12 <nav-bar>
13 <top-nav-menu last="{{ true }}"></top-nav-menu>
14 <nav-notify notifications="{{ app.notifications }}"></nav-notify>
15 </nav-bar>
16
17 <div class="content-centered">
18 <h1 class="doubleSpaced">Isolate {{ missingIsolateId }} no longer exists</ h1>
19 <div class="memberList">
20 <template repeat="{{ i in app.vm.isolates }}">
21 <div class="memberItem doubleSpaced">
22 Continue in <a _href="{{ linkToContinueIn(i) }}">{{ i.id }} ({{ i.n ame }})</a>
23 </div>
24 </template>
25 <div class="memberItem doubleSpaced">
26 Go to <a _href="{{ gotoLink('/vm') }}">isolates summary</a>
27 </div>
28 </div>
29 </div>
30 </template>
31 </polymer-element>
32
33 <script type="application/dart" src="isolate_reconnect.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate_reconnect.dart ('k') | runtime/observatory/observatory_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698