aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2020-01-20 09:20:42 -0500
committerbob <bcz@cs.brown.edu>2020-01-20 09:20:42 -0500
commite2d6f1d930f0f092d975bd221c45d07a8620efa7 (patch)
tree9b6727297393f83fcea5078299bf5bd986aa2ec7 /src/client/views/collections/CollectionTreeView.tsx
parent7a27ec8f23a085af08a2881cdaf95a196d4140db (diff)
nothing changes.
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r--src/client/views/collections/CollectionTreeView.tsx9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx
index 239e6caa6..abc902491 100644
--- a/src/client/views/collections/CollectionTreeView.tsx
+++ b/src/client/views/collections/CollectionTreeView.tsx
@@ -633,15 +633,16 @@ export class CollectionTreeView extends CollectionSubView(Document) {
ContextMenu.Instance.addItem({
description: "Buxton Layout", icon: "eye", event: () => {
// const [first, second, third] = new Array(3).map(() => Docs.Create.MulticolumnDocument([], {}));
- const year = Docs.Create.FreeformDocument([], { title: "year" });
+ const year = Docs.Create.TextDocument({ title: "year" });
const wrapper = Docs.Create.FreeformDocument([year], {});
+ wrapper.disableLOD = true;
makeTemplate(wrapper);
const detailedLayout = Doc.MakeAlias(wrapper);
const cardLayout = ImageBox.LayoutString("hero");
this.childLayoutPairs.forEach(({ layout }) => {
- layout.layout = cardLayout;
- layout.detailedDeviceView = detailedLayout;
- // Doc.ApplyTemplateTo(wrapper, layout, "detailedDeviceView");
+ Doc.GetProto(layout).layout = cardLayout;
+ Doc.GetProto(layout).layout_detailed = detailedLayout;
+ // Doc.ApplyTemplateTo(wrapper, layout, "layout_detailed");
});
}
});