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

Unified Diff: runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html

Issue 457803002: Initial UI for Metrics in Observatory (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html
diff --git a/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html b/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html
index 7b7f43a6ca76e8d31bb335c3ab8500acaf290b18..2143546578be3486bdce9c3a8ae3052a061a3178 100644
--- a/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html
+++ b/runtime/bin/vmservice/observatory/lib/src/elements/instance_ref.html
@@ -35,16 +35,16 @@
isNull(ref) ||
isInt(ref)) ||
isDouble(ref)) }}">
- <a on-click="{{ goto }}" href="{{ url }}">{{ ref['valueAsString'] }}</a>
+ <a on-click="{{ goto }}" _href="{{ url }}">{{ ref['valueAsString'] }}</a>
</template>
<template if="{{ (isType(ref)) }}">
- <a on-click="{{ goto }}" href="{{ url }}">{{ ref['user_name'] }}</a>
+ <a on-click="{{ goto }}" _href="{{ url }}">{{ ref['user_name'] }}</a>
</template>
<template if="{{ isInstance(ref) &&
ref['closureFunc'] != null}}">
- <a on-click="{{ goto }}" href="{{ url }}">
+ <a on-click="{{ goto }}" _href="{{ url }}">
<!-- TODO(turnidge): Switch this to fully-qualified function -->
{{ ref['closureFunc'].name }}
</a>
@@ -52,7 +52,7 @@
<template if="{{ isInstance(ref) &&
ref['closureFunc'] == null}}">
- <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</em></a>
+ <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref['class'].name }}</em></a>
<curly-block callback="{{ expander() }}">
<div class="memberList">
<template repeat="{{ field in ref['fields'] }}">
@@ -70,7 +70,7 @@
</template>
<template if="{{ isList(ref) }}">
- <a on-click="{{ goto }}" href="{{ url }}"><em>{{ ref['class'].name }}</em> ({{ ref['length']}})</a>
+ <a on-click="{{ goto }}" _href="{{ url }}"><em>{{ ref['class'].name }}</em> ({{ ref['length']}})</a>
<curly-block callback="{{ expander() }}">
<div class="memberList">
<template repeat="{{ element in ref['elements'] }}">

Powered by Google App Engine
This is Rietveld 408576698