| 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="script_inset.html"> | |
| 3 | 2 |
| 4 <polymer-element name="function-view"> | 3 <polymer-element name="function-view"> |
| 5 <template> | 4 <template> |
| 6 <link rel="stylesheet" href="css/shared.css"> | 5 <link rel="stylesheet" href="css/shared.css"> |
| 7 <nav-bar> | 6 <nav-bar> |
| 8 <top-nav-menu></top-nav-menu> | 7 <top-nav-menu></top-nav-menu> |
| 9 <vm-nav-menu vm="{{ function.isolate.vm }}"></vm-nav-menu> | 8 <vm-nav-menu vm="{{ function.isolate.vm }}"></vm-nav-menu> |
| 10 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> | 9 <isolate-nav-menu isolate="{{ function.isolate }}"></isolate-nav-menu> |
| 11 <library-nav-menu library="{{ function.library }}"></library-nav-menu> | 10 <library-nav-menu library="{{ function.library }}"></library-nav-menu> |
| 12 <template if="{{ function.dartOwner is ServiceClass }}"> | 11 <template if="{{ function.dartOwner is ServiceClass }}"> |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 <div class="content-centered-big"> | 117 <div class="content-centered-big"> |
| 119 <hr> | 118 <hr> |
| 120 <source-inset location="{{ function.location }}"></source-inset> | 119 <source-inset location="{{ function.location }}"></source-inset> |
| 121 </div> | 120 </div> |
| 122 | 121 |
| 123 <view-footer></view-footer> | 122 <view-footer></view-footer> |
| 124 </template> | 123 </template> |
| 125 </polymer-element> | 124 </polymer-element> |
| 126 | 125 |
| 127 <script type="application/dart" src="function_view.dart"></script> | 126 <script type="application/dart" src="function_view.dart"></script> |
| OLD | NEW |