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

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: Go back to collapsing when small, panel and minimap vanish at the same time column widens 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..2b94c4181ae04c21f5e28b036856ec2d4a6bbffb 100644
--- a/client/web/category.dart
+++ b/client/web/category.dart
@@ -26,7 +26,6 @@ class CategoryElement extends DartdocElement {
notifyPropertyChange(#accordionParent,
accordionParentFor(change.oldValue), accordionParent);
notifyPropertyChange(#divClass, divClassFor(change.oldValue), divClass);
- notifyPropertyChange(#divStyle, divStyleFor(change.oldValue), divStyle);
});
new PathObserver(viewer, "isInherited").changes.listen((changes) {
_flushCache();
@@ -122,9 +121,6 @@ class CategoryElement extends DartdocElement {
@observable get divClass => divClassFor(viewer.isDesktop);
divClassFor(isDesktop) => isDesktop ? 'collapse in' : 'collapse';
- @observable get divStyle => divStyleFor(viewer.isDesktop);
- divStyleFor(isDesktop) => isDesktop ? 'auto' : '0px';
-
var validator = new NodeValidatorBuilder()
..allowHtml5(uriPolicy: new SameProtocolUriPolicy())
« 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