| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="error_view.html"> | 2 <link rel="import" href="error_view.html"> |
| 3 <link rel="import" href="field_ref.html"> | 3 <link rel="import" href="field_ref.html"> |
| 4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="instance_ref.html"> | 5 <link rel="import" href="instance_ref.html"> |
| 6 <link rel="import" href="library_ref.html"> | 6 <link rel="import" href="library_ref.html"> |
| 7 <link rel="import" href="nav_bar.html"> | 7 <link rel="import" href="nav_bar.html"> |
| 8 <link rel="import" href="observatory_element.html"> | 8 <link rel="import" href="isolate_element.html"> |
| 9 </head> | 9 </head> |
| 10 <polymer-element name="class-view" extends="observatory-element"> | 10 <polymer-element name="class-view" extends="isolate-element"> |
| 11 <template> | 11 <template> |
| 12 <nav-bar> | 12 <nav-bar> |
| 13 <top-nav-menu></top-nav-menu> | 13 <top-nav-menu></top-nav-menu> |
| 14 <isolate-nav-menu app="{{ app }}" isolate="{{ app.locationManager.currentI
solate() }}"> | 14 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> |
| 15 </isolate-nav-menu> | 15 <library-nav-menu isolate="{{ isolate }}" library="{{ cls['library'] }}"><
/library-nav-menu> |
| 16 <library-nav-menu app="{{ app }}" library="{{ cls['library'] }}"></library
-nav-menu> | 16 <class-nav-menu isolate="{{ isolate }}" cls="{{ cls }}" last="{{ true }}">
</class-nav-menu> |
| 17 <class-nav-menu app="{{ app }}" cls="{{ cls }}" last="{{ true }}"></class-
nav-menu> | |
| 18 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 17 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
| 19 </nav-bar> | 18 </nav-bar> |
| 20 | 19 |
| 21 <div class="row"> | 20 <div class="row"> |
| 22 <div class="col-md-8 col-md-offset-2"> | 21 <div class="col-md-8 col-md-offset-2"> |
| 23 <div class="panel panel-warning"> | 22 <div class="panel panel-warning"> |
| 24 <div class="panel-heading"> | 23 <div class="panel-heading"> |
| 25 class <strong>{{ cls['user_name'] }}</strong> | 24 class <strong>{{ cls['user_name'] }}</strong> |
| 26 <template if="{{ cls['super']['type'] != 'Null' }}"> | 25 <template if="{{ cls['super']['type'] != 'Null' }}"> |
| 27 extends | 26 extends |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 <template if="{{ cls['error'] != null }}"> | 80 <template if="{{ cls['error'] != null }}"> |
| 82 <error-view error_obj="{{ cls['error'] }}"></error-view> | 81 <error-view error_obj="{{ cls['error'] }}"></error-view> |
| 83 </template> | 82 </template> |
| 84 </div> | 83 </div> |
| 85 </div> | 84 </div> |
| 86 </div> | 85 </div> |
| 87 </div> | 86 </div> |
| 88 </template> | 87 </template> |
| 89 <script type="application/dart" src="class_view.dart"></script> | 88 <script type="application/dart" src="class_view.dart"></script> |
| 90 </polymer-element> | 89 </polymer-element> |
| OLD | NEW |