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

Side by Side Diff: runtime/observatory/lib/src/elements/error_view.html

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 5 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
OLDNEW
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">
4 3
5 <polymer-element name="error-view" extends="observatory-element"> 4
5 <polymer-element name="error-view">
6 <template> 6 <template>
7 <link rel="stylesheet" href="css/shared.css"> 7 <link rel="stylesheet" href="css/shared.css">
8 <nav-bar> 8 <nav-bar>
9 <top-nav-menu last="{{ true }}"></top-nav-menu> 9 <top-nav-menu last="{{ true }}"></top-nav-menu>
10 <nav-notify notifications="{{ app.notifications }}"></nav-notify> 10 <nav-notify notifications="{{ app.notifications }}"></nav-notify>
11 </nav-bar> 11 </nav-bar>
12 <div class="content-centered"> 12 <div class="content-centered">
13 <h1>{{ error.kind }}</h1> 13 <h1>{{ error.kind }}</h1>
14 <br> 14 <br>
15 <div class="well">{{ error.message }}</div> 15 <div class="well">{{ error.message }}</div>
16 </div> 16 </div>
17 <view-footer></view-footer> 17 <view-footer></view-footer>
18 </template> 18 </template>
19 </polymer-element> 19 </polymer-element>
20 20
21 <script type="application/dart" src="error_view.dart"></script> 21 <script type="application/dart" src="error_view.dart"></script>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/error_ref.html ('k') | runtime/observatory/lib/src/elements/eval_box.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698