| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="class_ref.html"> | 2 <link rel="import" href="class_ref.html"> |
| 3 <link rel="import" href="code_ref.html"> | 3 <link rel="import" href="code_ref.html"> |
| 4 <link rel="import" href="function_ref.html"> | 4 <link rel="import" href="function_ref.html"> |
| 5 <link rel="import" href="library_ref.html"> | 5 <link rel="import" href="library_ref.html"> |
| 6 <link rel="import" href="observatory_element.html"> | 6 <link rel="import" href="observatory_element.html"> |
| 7 <link rel="import" href="nav_bar.html"> | 7 <link rel="import" href="nav_bar.html"> |
| 8 <link rel="import" href="script_inset.html"> | 8 <link rel="import" href="script_inset.html"> |
| 9 <link rel="import" href="script_ref.html"> | 9 <link rel="import" href="script_ref.html"> |
| 10 <link rel="import" href="view_footer.html"> |
| 10 | 11 |
| 11 <polymer-element name="function-view" extends="observatory-element"> | 12 <polymer-element name="function-view" extends="observatory-element"> |
| 12 <template> | 13 <template> |
| 13 <link rel="stylesheet" href="css/shared.css"> | 14 <link rel="stylesheet" href="css/shared.css"> |
| 14 <nav-bar> | 15 <nav-bar> |
| 15 <top-nav-menu></top-nav-menu> | 16 <top-nav-menu></top-nav-menu> |
| 16 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> | 17 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> |
| 17 <library-nav-menu library="{{ function.library }}"></library-nav-menu> | 18 <library-nav-menu library="{{ function.library }}"></library-nav-menu> |
| 18 <template if="{{ function.dartOwner is ServiceClass }}"> | 19 <template if="{{ function.dartOwner is ServiceClass }}"> |
| 19 <class-nav-menu cls="{{ function.dartOwner }}"></class-nav-menu> | 20 <class-nav-menu cls="{{ function.dartOwner }}"></class-nav-menu> |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 </template> | 94 </template> |
| 94 </div> | 95 </div> |
| 95 </div> | 96 </div> |
| 96 | 97 |
| 97 <hr> | 98 <hr> |
| 98 <script-inset script="{{ function.script }}" | 99 <script-inset script="{{ function.script }}" |
| 99 startPos="{{ function.tokenPos }}" | 100 startPos="{{ function.tokenPos }}" |
| 100 endPos="{{ function.endTokenPos }}"> | 101 endPos="{{ function.endTokenPos }}"> |
| 101 </script-inset> | 102 </script-inset> |
| 102 | 103 |
| 103 <br> | 104 <view-footer></view-footer> |
| 104 </template> | 105 </template> |
| 105 </polymer-element> | 106 </polymer-element> |
| 106 | 107 |
| 107 <script type="application/dart" src="function_view.dart"></script> | 108 <script type="application/dart" src="function_view.dart"></script> |
| OLD | NEW |