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

Unified Diff: client/web/category.dart

Issue 60233005: Remove WIP label, make categories always expanded, move build number down. (Closed) Base URL: https://github.com/dart-lang/dartdoc-viewer.git@master
Patch Set: Created 7 years, 1 month 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 | « client/web/app.dart ('k') | client/web/category.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/web/category.dart
diff --git a/client/web/category.dart b/client/web/category.dart
index 101e87815462a058958f39e644c0d799188fade6..b9aa3367ee3868cb81462ba9d0d5b72a8b57ea15 100644
--- a/client/web/category.dart
+++ b/client/web/category.dart
@@ -116,14 +116,14 @@ class CategoryElement extends DartdocElement {
}
@observable get accordionStyle => accordionStyleFor(viewer.isDesktop);
- accordionStyleFor(isDesktop) => isDesktop ? '' : 'collapsed';
+ accordionStyleFor(isDesktop) => '';
Emily Fortuna 2013/11/05 20:16:06 I disagree with this change, but I'm waiting to he
@observable get accordionParent => accordionParentFor(viewer.isDesktop);
accordionParentFor(isDesktop) => isDesktop ? '' : '#accordion-grouping';
@observable get divClass => divClassFor(viewer.isDesktop);
- divClassFor(isDesktop) => isDesktop ? 'collapse in' : 'collapse';
+ divClassFor(isDesktop) => 'collapse in';
@observable get divStyle => divStyleFor(viewer.isDesktop);
- divStyleFor(isDesktop) => isDesktop ? 'auto' : '0px';
+ divStyleFor(isDesktop) => 'auto';
var validator = new NodeValidatorBuilder()
« no previous file with comments | « client/web/app.dart ('k') | client/web/category.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698