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

Unified Diff: runtime/observatory/lib/src/elements/script_view.html

Issue 1079163009: Fix script-view. Hide annotations except the current position when debugging. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/script_view.html
diff --git a/runtime/observatory/lib/src/elements/script_view.html b/runtime/observatory/lib/src/elements/script_view.html
index fc391477e0ee4e317efc372a65c9954101035bd3..b16ef25bd9e00dcc92fa1fdab6391421742bfb1c 100644
--- a/runtime/observatory/lib/src/elements/script_view.html
+++ b/runtime/observatory/lib/src/elements/script_view.html
@@ -16,15 +16,15 @@
<nav-refresh callback="{{ refresh }}"></nav-refresh>
</nav-bar>
- <template if="{{ args['pos'] == null }}">
+ <template if="{{ app.locationManager.internalArguments['pos'] == null }}">
<script-inset id="scriptInset" script="{{ script }}">
<h1>script {{ script.name }}</h1>
</script-inset>
</template>
- <template if="{{ args['pos'] != null }}">
+ <template if="{{ app.locationManager.internalArguments['pos'] != null }}">
<script-inset id="scriptInset" script="{{ script }}"
- currentPos="{{ args['pos'] | parseInt }}">
+ currentPos="{{ app.locationManager.internalArguments['pos'] | parseInt }}">
<h1>script {{ script.name }}</h1>
</script-inset>
</template>
« no previous file with comments | « runtime/observatory/lib/src/elements/script_inset.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698