OLD | NEW |
1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
2 <link rel="import" href="nav_bar.html"> | 2 <link rel="import" href="nav_bar.html"> |
3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
4 | 4 |
5 <polymer-element name="vm-connect-target" extends="observatory-element"> | 5 <polymer-element name="vm-connect-target" extends="observatory-element"> |
6 <template> | 6 <template> |
7 <style> | 7 <style> |
8 .delete-button { | 8 .delete-button { |
9 padding: 4px; | 9 padding: 4px; |
10 background: transparent; | 10 background: transparent; |
(...skipping 21 matching lines...) Expand all Loading... |
32 <link rel="stylesheet" href="css/shared.css"> | 32 <link rel="stylesheet" href="css/shared.css"> |
33 <style> | 33 <style> |
34 .textbox { | 34 .textbox { |
35 width: 20em; | 35 width: 20em; |
36 font: 400 16px 'Montserrat', sans-serif; | 36 font: 400 16px 'Montserrat', sans-serif; |
37 } | 37 } |
38 </style> | 38 </style> |
39 | 39 |
40 <nav-bar> | 40 <nav-bar> |
41 <top-nav-menu last="{{ true }}"></top-nav-menu> | 41 <top-nav-menu last="{{ true }}"></top-nav-menu> |
| 42 <nav-notify notifications="{{ app.notifications }}"></nav-notify> |
42 </nav-bar> | 43 </nav-bar> |
43 | 44 |
44 <div class="content-centered"> | 45 <div class="content-centered"> |
45 <h1>Connect to a Dart VM</h1> | 46 <h1>Connect to a Dart VM</h1> |
46 <br> | 47 <br> |
47 <hr> | 48 <hr> |
48 <div class="flex-row"> | 49 <div class="flex-row"> |
49 <div class="flex-item-40-percent"> | 50 <div class="flex-item-40-percent"> |
50 <h2>WebSocket</h2> | 51 <h2>WebSocket</h2> |
51 <br> | 52 <br> |
(...skipping 25 matching lines...) Expand all Loading... |
77 'curl localhost:8181/_getCrashDump > dump.json'</pre> | 78 'curl localhost:8181/_getCrashDump > dump.json'</pre> |
78 <hr> | 79 <hr> |
79 </div> | 80 </div> |
80 </div> | 81 </div> |
81 </div> | 82 </div> |
82 <view-footer></view-footer> | 83 <view-footer></view-footer> |
83 </template> | 84 </template> |
84 </polymer-element> | 85 </polymer-element> |
85 | 86 |
86 <script type="application/dart" src="vm_connect.dart"></script> | 87 <script type="application/dart" src="vm_connect.dart"></script> |
OLD | NEW |