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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/observatory_elements/navigation_bar.html

Issue 185413015: Update the navbar in the observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: new js Created 6 years, 9 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
(Empty)
1 <head>
2 <link rel="import" href="navigation_bar_isolate.html">
3 <link rel="import" href="observatory_element.html">
4 </head>
5 <polymer-element name="navigation-bar" extends="observatory-element">
6 <template>
7 <nav class="navbar navbar-default" role="navigation">
8 <div class="navbar-header">
9 <a class="navbar-brand" href="#/isolates">Observatory</a>
10 </div>
11 <template if="{{ app.locationManager.hasCurrentIsolate }}">
12 <div class="collapse navbar-collapse navbar-ex1-collapse">
13 <navigation-bar-isolate app="{{ app }}"></navigation-bar-isolate>
14 </div>
15 </template>
16 </nav>
17 </template>
18 <script type="application/dart" src="navigation_bar.dart"></script>
19 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698