Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(264)

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index_devtools.html

Issue 199443008: Support doubles in observatory. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: gen js Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html><html><head> 1 <!DOCTYPE html><html><head>
2 2
3 3
4 <title>Dart VM Observatory</title> 4 <title>Dart VM Observatory</title>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss"> 6 <link type="text/css" rel="stylesheet" href="bootstrap_css/css/bootstrap.min.c ss">
7 <script type="text/javascript" src="https://www.google.com/jsapi"></script> 7 <script type="text/javascript" src="https://www.google.com/jsapi"></script>
8 8
9 9
10 <script src="index_devtools.html_bootstrap.dart.js"></script> 10 <script src="index_devtools.html_bootstrap.dart.js"></script>
(...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 <template if="{{ isError(ref.serviceType) }}"> 296 <template if="{{ isError(ref.serviceType) }}">
297 <pre>{{ ref.message }}</pre> 297 <pre>{{ ref.message }}</pre>
298 </template> 298 </template>
299 299
300 <template if="{{ isNull(ref.serviceType) }}"> 300 <template if="{{ isNull(ref.serviceType) }}">
301 <div title="{{ hoverText }}">{{ ref['preview'] }}</div> 301 <div title="{{ hoverText }}">{{ ref['preview'] }}</div>
302 </template> 302 </template>
303 303
304 <template if="{{ (isString(ref.serviceType) || 304 <template if="{{ (isString(ref.serviceType) ||
305 isBool(ref.serviceType) || 305 isBool(ref.serviceType) ||
306 isInt(ref.serviceType)) }}"> 306 isInt(ref.serviceType)) ||
307 isDouble(ref.serviceType)) }}">
307 <a href="{{ url }}">{{ ref['preview'] }}</a> 308 <a href="{{ url }}">{{ ref['preview'] }}</a>
308 </template> 309 </template>
309 310
310 <template if="{{ isClosure(ref.serviceType) }}"> 311 <template if="{{ isClosure(ref.serviceType) }}">
311 <a href="{{ url }}"> 312 <a href="{{ url }}">
312 <!-- TODO(turnidge): Switch this to fully-qualified function --> 313 <!-- TODO(turnidge): Switch this to fully-qualified function -->
313 {{ ref['closureFunc']['user_name'] }} 314 {{ ref['closureFunc']['user_name'] }}
314 </a> 315 </a>
315 </template> 316 </template>
316 317
(...skipping 1473 matching lines...) Expand 10 before | Expand all | Expand 10 after
1790 <template> 1791 <template>
1791 <response-viewer app="{{ app }}"></response-viewer> 1792 <response-viewer app="{{ app }}"></response-viewer>
1792 </template> 1793 </template>
1793 1794
1794 </polymer-element> 1795 </polymer-element>
1795 1796
1796 1797
1797 <observatory-application devtools="true"></observatory-application> 1798 <observatory-application devtools="true"></observatory-application>
1798 1799
1799 </body></html> 1800 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698