diff options
author | bobzel <zzzman@gmail.com> | 2021-03-09 09:49:03 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-09 09:49:03 -0500 |
commit | 8fcb1a23224762233ebf3e519b13bc72cdfdf3c5 (patch) | |
tree | 52e4114b5d8db3ab00efe0e404a8424fc7766eaf /src/fields/documentSchemas.ts | |
parent | 2beec2fd2075f210054095dcd028c056dab48e28 (diff) |
got rid of DocHolderBox. changed dontRegisterChildViews to childDontRegisterViews for consistency.
Diffstat (limited to 'src/fields/documentSchemas.ts')
-rw-r--r-- | src/fields/documentSchemas.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/fields/documentSchemas.ts b/src/fields/documentSchemas.ts index 4d8b6b55c..0bf942474 100644 --- a/src/fields/documentSchemas.ts +++ b/src/fields/documentSchemas.ts @@ -109,11 +109,10 @@ export const documentSchema = createSchema({ export const collectionSchema = createSchema({ - childLayoutTemplateName: "string", // the name of a template to use to override the layoutKey when rendering a document -- ONLY used in DocHolderBox childLayoutTemplate: Doc, // layout template to use to render children of a collecion childLayoutString: "string", //layout string to use to render children of a collection childClickedOpenTemplateView: Doc, // layout template to apply to a child when its clicked on in a collection and opened (requires onChildClick or other script to read this value and apply template) - dontRegisterChildViews: "boolean", // whether views made of this document are registered so that they can be found when drawing links + childDontRegisterViews: "boolean", // whether views made of this document are registered so that they can be found when drawing links onChildClick: ScriptField, // script to run for each child when its clicked onChildDoubleClick: ScriptField, // script to run for each child when its clicked onCheckedClick: ScriptField, // script to run when a checkbox is clicked next to a child in a tree view |