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

Side by Side Diff: runtime/bin/vmservice/client/deployed/web/index.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
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice/client/deployed/web/index.html_bootstrap.dart.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698