| 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="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 | 4 |
| 5 <polymer-element name="nav-bar" extends="observatory-element"> | 5 <polymer-element name="nav-bar" extends="observatory-element"> |
| 6 <template> | 6 <template> |
| 7 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
| 8 <style> | 8 <style> |
| 9 nav { | 9 nav { |
| 10 position: fixed; | 10 position: fixed; |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 </action-link> | 336 </action-link> |
| 337 <action-link callback="{{ stepInto }}" label="step" color="white"> | 337 <action-link callback="{{ stepInto }}" label="step" color="white"> |
| 338 </action-link> | 338 </action-link> |
| 339 <action-link callback="{{ stepOver }}" label="step over" | 339 <action-link callback="{{ stepOver }}" label="step over" |
| 340 color="white"></action-link> | 340 color="white"></action-link> |
| 341 <action-link callback="{{ stepOut }}" label="step out" | 341 <action-link callback="{{ stepOut }}" label="step out" |
| 342 color="white"></action-link> | 342 color="white"></action-link> |
| 343 <a class="boxclose" on-click="{{ closeItem }}">×</a> | 343 <a class="boxclose" on-click="{{ closeItem }}">×</a> |
| 344 </div> | 344 </div> |
| 345 </template> | 345 </template> |
| 346 <template if="{{ event.eventType == 'VMDisconnected' }}"> |
| 347 <div class="item"> |
| 348 Disconnected from VM |
| 349 <br><br> |
| 350 <a class="boxclose" on-click="{{ closeItem }}">×</a> |
| 351 </div> |
| 352 </template> |
| 346 </template> | 353 </template> |
| 347 </polymer-element> | 354 </polymer-element> |
| 348 | 355 |
| 349 | 356 |
| 350 <script type="application/dart" src="nav_bar.dart"></script> | 357 <script type="application/dart" src="nav_bar.dart"></script> |
| OLD | NEW |