Chromium Code Reviews| OLD | NEW | 
|---|---|
| (Empty) | |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | |
| 
 
Cutch
2015/05/13 17:50:09
observatory_sources.gypi
 
turnidge
2015/05/14 17:53:42
Done.
 
 | |
| 2 <link rel="import" href="nav_bar.html"> | |
| 3 <link rel="import" href="observatory_element.html"> | |
| 4 | |
| 5 <polymer-element name="service-exception-view" extends="observatory-element"> | |
| 6 <template> | |
| 7 <link rel="stylesheet" href="css/shared.css"> | |
| 8 <nav-bar> | |
| 9 <top-nav-menu last="{{ true }}"></top-nav-menu> | |
| 10 </nav-bar> | |
| 11 <div class="content-centered"> | |
| 12 <h1>{{ exception.kind }}</h1> | |
| 13 <br> | |
| 14 <div class="well">{{ exception.message }}</div> | |
| 15 <template if="{{ exception.response != '' }}"> | |
| 16 <div class="well">{{ exception.response }}</div> | |
| 17 </template> | |
| 18 </div> | |
| 19 </template> | |
| 20 </polymer-element> | |
| 21 | |
| 22 <script type="application/dart" src="service_exception_view.dart"></script> | |
| OLD | NEW |