| OLD | NEW |
| 1 <!DOCTYPE html><html><head> | 1 <!DOCTYPE html><html><head> |
| 2 | 2 |
| 3 | 3 |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> | 5 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c
ss"> |
| 6 | 6 |
| 7 <title>Dart VM Observatory</title> | 7 <title>Dart VM Observatory</title> |
| 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> | 8 <script type="text/javascript" src="https://www.google.com/jsapi"></script> |
| 9 | 9 |
| 10 | 10 |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 <template if="{{ isError(ref.serviceType) }}"> | 297 <template if="{{ isError(ref.serviceType) }}"> |
| 298 <pre>{{ ref.message }}</pre> | 298 <pre>{{ ref.message }}</pre> |
| 299 </template> | 299 </template> |
| 300 | 300 |
| 301 <template if="{{ isNull(ref.serviceType) }}"> | 301 <template if="{{ isNull(ref.serviceType) }}"> |
| 302 <div title="{{ hoverText }}">{{ ref['preview'] }}</div> | 302 <div title="{{ hoverText }}">{{ ref['preview'] }}</div> |
| 303 </template> | 303 </template> |
| 304 | 304 |
| 305 <template if="{{ (isString(ref.serviceType) || | 305 <template if="{{ (isString(ref.serviceType) || |
| 306 isBool(ref.serviceType) || | 306 isBool(ref.serviceType) || |
| 307 isInt(ref.serviceType)) }}"> | 307 isInt(ref.serviceType)) || |
| 308 isDouble(ref.serviceType)) }}"> |
| 308 <a href="{{ url }}">{{ ref['preview'] }}</a> | 309 <a href="{{ url }}">{{ ref['preview'] }}</a> |
| 309 </template> | 310 </template> |
| 310 | 311 |
| 311 <template if="{{ isClosure(ref.serviceType) }}"> | 312 <template if="{{ isClosure(ref.serviceType) }}"> |
| 312 <a href="{{ url }}"> | 313 <a href="{{ url }}"> |
| 313 <!-- TODO(turnidge): Switch this to fully-qualified function --> | 314 <!-- TODO(turnidge): Switch this to fully-qualified function --> |
| 314 {{ ref['closureFunc']['user_name'] }} | 315 {{ ref['closureFunc']['user_name'] }} |
| 315 </a> | 316 </a> |
| 316 </template> | 317 </template> |
| 317 | 318 |
| (...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1791 <template> | 1792 <template> |
| 1792 <response-viewer app="{{ app }}"></response-viewer> | 1793 <response-viewer app="{{ app }}"></response-viewer> |
| 1793 </template> | 1794 </template> |
| 1794 | 1795 |
| 1795 </polymer-element> | 1796 </polymer-element> |
| 1796 | 1797 |
| 1797 | 1798 |
| 1798 <observatory-application></observatory-application> | 1799 <observatory-application></observatory-application> |
| 1799 | 1800 |
| 1800 </body></html> | 1801 </body></html> |
| OLD | NEW |