| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 1 <link rel="import" href="function_ref.html"> | 2 <link rel="import" href="function_ref.html"> |
| 2 <link rel="import" href="instance_ref.html"> | 3 <link rel="import" href="instance_ref.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 4 <link rel="import" href="observatory_element.html"> |
| 4 <link rel="import" href="nav_bar.html"> | 5 <link rel="import" href="nav_bar.html"> |
| 5 <link rel="import" href="script_ref.html"> | 6 <link rel="import" href="script_ref.html"> |
| 7 |
| 6 <polymer-element name="code-view" extends="observatory-element"> | 8 <polymer-element name="code-view" extends="observatory-element"> |
| 7 <template> | 9 <template> |
| 8 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
| 9 <style> | 11 <style> |
| 10 div.flex-row:hover { | 12 div.flex-row:hover { |
| 11 background-color: #FFF3E3; | 13 background-color: #FFF3E3; |
| 12 } | 14 } |
| 13 | 15 |
| 14 .highlight { | 16 .highlight { |
| 15 background-color: #FFF3E3; | 17 background-color: #FFF3E3; |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 </div> | 158 </div> |
| 157 </template> | 159 </template> |
| 158 <div class="flex-item-fixed-6-12 monospace"> | 160 <div class="flex-item-fixed-6-12 monospace"> |
| 159 {{ instruction.human }} | 161 {{ instruction.human }} |
| 160 </div> | 162 </div> |
| 161 </template> | 163 </template> |
| 162 </div> | 164 </div> |
| 163 </template> | 165 </template> |
| 164 </div> | 166 </div> |
| 165 </template> | 167 </template> |
| 166 <script type="application/dart" src="code_view.dart"></script> | |
| 167 </polymer-element> | 168 </polymer-element> |
| 169 |
| 170 <script type="application/dart" src="code_view.dart"></script> |
| OLD | NEW |