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

Side by Side Diff: runtime/bin/vmservice/observatory/lib/src/elements/nav_bar.html

Issue 558703005: Do not navigate to vm-connect page upon disconnect (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
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
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&nbsp;over" 339 <action-link callback="{{ stepOver }}" label="step&nbsp;over"
340 color="white"></action-link> 340 color="white"></action-link>
341 <action-link callback="{{ stepOut }}" label="step&nbsp;out" 341 <action-link callback="{{ stepOut }}" label="step&nbsp;out"
342 color="white"></action-link> 342 color="white"></action-link>
343 <a class="boxclose" on-click="{{ closeItem }}">&times;</a> 343 <a class="boxclose" on-click="{{ closeItem }}">&times;</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 }}">&times;</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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698