| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library nav_bar_element; | 5 library nav_bar_element; |
| 6 | 6 |
| 7 import 'dart:html'; | 7 import 'dart:html'; |
| 8 import 'observatory_element.dart'; | 8 import 'observatory_element.dart'; |
| 9 import 'package:observatory/app.dart'; | 9 import 'package:observatory/app.dart'; |
| 10 import 'package:observatory/service.dart'; | 10 import 'package:observatory/service.dart'; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 @CustomTag('library-nav-menu') | 104 @CustomTag('library-nav-menu') |
| 105 class LibraryNavMenuElement extends ObservatoryElement { | 105 class LibraryNavMenuElement extends ObservatoryElement { |
| 106 @published Library library; | 106 @published Library library; |
| 107 @published bool last = false; | 107 @published bool last = false; |
| 108 | 108 |
| 109 LibraryNavMenuElement.created() : super.created(); | 109 LibraryNavMenuElement.created() : super.created(); |
| 110 } | 110 } |
| 111 | 111 |
| 112 @CustomTag('class-nav-menu') | 112 @CustomTag('class-nav-menu') |
| 113 class ClassNavMenuElement extends ObservatoryElement { | 113 class ClassNavMenuElement extends ObservatoryElement { |
| 114 @published ServiceMap cls; | 114 @published Class cls; |
| 115 @published bool last = false; | 115 @published bool last = false; |
| 116 | 116 |
| 117 ClassNavMenuElement.created() : super.created(); | 117 ClassNavMenuElement.created() : super.created(); |
| 118 } | 118 } |
| OLD | NEW |