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="code_ref.html"> | 2 <link rel="import" href="code_ref.html"> |
3 <link rel="import" href="function_ref.html"> | 3 <link rel="import" href="function_ref.html"> |
4 <link rel="import" href="nav_bar.html"> | 4 <link rel="import" href="nav_bar.html"> |
5 <link rel="import" href="observatory_element.html"> | 5 <link rel="import" href="observatory_element.html"> |
6 <link rel="import" href="sliding_checkbox.html"> | 6 <link rel="import" href="sliding_checkbox.html"> |
7 | 7 |
8 <polymer-element name="cpu-profile" extends="observatory-element"> | 8 <polymer-element name="cpu-profile" extends="observatory-element"> |
9 <template> | 9 <template> |
10 <link rel="stylesheet" href="css/shared.css"> | 10 <link rel="stylesheet" href="css/shared.css"> |
11 <nav-bar> | 11 <nav-bar> |
12 <top-nav-menu></top-nav-menu> | 12 <top-nav-menu></top-nav-menu> |
13 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> | 13 <isolate-nav-menu isolate="{{ isolate }}"></isolate-nav-menu> |
14 <nav-menu link="{{ '/profiler' + isolate.link }}" anchor="cpu profile" las t="{{ true }}"></nav-menu> | 14 <nav-menu link="{{ '/profiler/' + isolate.id }}" anchor="cpu profile" last ="{{ true }}"></nav-menu> |
Cutch
2015/02/05 14:54:48
Why not makeLink('/profiler', isolate) here and el
turnidge
2015/02/05 17:11:36
Done.
| |
15 <nav-refresh callback="{{ refresh }}"></nav-refresh> | 15 <nav-refresh callback="{{ refresh }}"></nav-refresh> |
16 <nav-control></nav-control> | 16 <nav-control></nav-control> |
17 </nav-bar> | 17 </nav-bar> |
18 <style> | 18 <style> |
19 .table { | 19 .table { |
20 border-collapse: collapse!important; | 20 border-collapse: collapse!important; |
21 width: 100%; | 21 width: 100%; |
22 margin-bottom: 20px | 22 margin-bottom: 20px |
23 } | 23 } |
24 .table thead > tr > th, | 24 .table thead > tr > th, |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
149 </tr> | 149 </tr> |
150 </thead> | 150 </thead> |
151 <tbody id="tableTreeBody"> | 151 <tbody id="tableTreeBody"> |
152 </tbody> | 152 </tbody> |
153 </table> | 153 </table> |
154 </div> | 154 </div> |
155 </template> | 155 </template> |
156 </polymer-element> | 156 </polymer-element> |
157 | 157 |
158 <script type="application/dart" src="cpu_profile.dart"></script> | 158 <script type="application/dart" src="cpu_profile.dart"></script> |
OLD | NEW |