OLD | NEW |
| (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> | |
OLD | NEW |