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

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

Issue 1289913002: Make declaration annotations direct links; update annotations after the library's declarations are … (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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/observatory/lib/src/elements/library_view.html
diff --git a/runtime/observatory/lib/src/elements/library_view.html b/runtime/observatory/lib/src/elements/library_view.html
index 408916d394dc807148dfd1803f06e5313dd0746a..26ecc8e7a16c2cdcb24a18f17afa3d4fdac4d070 100644
--- a/runtime/observatory/lib/src/elements/library_view.html
+++ b/runtime/observatory/lib/src/elements/library_view.html
@@ -54,7 +54,7 @@
<div class="content">
<template if="{{ library.dependencies.isNotEmpty }}">
dependencies ({{ library.dependencies.length }})
- <curly-block expand="{{ library.dependencies.length <= 8 }}">
+ <curly-block expand="{{ false }}">
<div class="memberList">
<template repeat="{{ dep in library.dependencies }}">
<div class="memberItem">
@@ -81,7 +81,7 @@
<template if="{{ library.scripts.isNotEmpty }}">
scripts ({{ library.scripts.length }})
- <curly-block expand="{{ library.scripts.length <= 8 }}">
+ <curly-block expand="{{ false }}">
<div class="memberList">
<template repeat="{{ script in library.scripts }}">
<div class="memberItem">
@@ -97,7 +97,7 @@
<template if="{{ library.classes.isNotEmpty }}">
classes ({{ library.classes.length }})
- <curly-block expand="{{ library.classes.length <= 8 }}">
+ <curly-block expand="{{ false }}">
<div class="memberList">
<template repeat="{{ cls in library.classes }}">
<div class="memberItem">
@@ -134,7 +134,7 @@
<template if="{{ library.functions.isNotEmpty }}">
functions ({{ library.functions.length }})
- <curly-block expand="{{ library.functions.length <= 8 }}">
+ <curly-block expand="{{ false }}">
<div class="memberList">
<template repeat="{{ function in library.functions }}">
<div class="memberItem">

Powered by Google App Engine
This is Rietveld 408576698