| OLD | NEW |
| 1 <head> | 1 <head> |
| 2 <link rel="import" href="observatory_element.html"> | 2 <link rel="import" href="observatory_element.html"> |
| 3 </head> | 3 </head> |
| 4 | 4 |
| 5 <polymer-element name="nav-bar" extends="observatory-element"> | 5 <polymer-element name="nav-bar" extends="observatory-element"> |
| 6 <template> | 6 <template> |
| 7 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
| 8 <style> | 8 <style> |
| 9 nav { | 9 nav { |
| 10 position: fixed; | 10 position: fixed; |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 202 |
| 203 <polymer-element name="class-nav-menu" extends="observatory-element"> | 203 <polymer-element name="class-nav-menu" extends="observatory-element"> |
| 204 <template> | 204 <template> |
| 205 <nav-menu link="{{ cls.hashLink }}" | 205 <nav-menu link="{{ cls.hashLink }}" |
| 206 anchor="{{ cls.name }}" last="{{ last }}"> | 206 anchor="{{ cls.name }}" last="{{ last }}"> |
| 207 <content></content> | 207 <content></content> |
| 208 </nav-menu> | 208 </nav-menu> |
| 209 </template> | 209 </template> |
| 210 </polymer-element> | 210 </polymer-element> |
| 211 | 211 |
| 212 <script type="application/dart;component=1" src="nav_bar.dart"></script> | 212 <script type="application/dart" src="nav_bar.dart"></script> |
| OLD | NEW |