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()) |