diff options
author | bobzel <zzzman@gmail.com> | 2025-06-10 19:06:31 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-10 19:06:31 -0400 |
commit | 403dcfb5e8b659f62ed51212ede3f5807caa58c6 (patch) | |
tree | 8d72f2d4c3a22c13c8f53f8e82355a887333f4ac /src/client/documents/Documents.ts | |
parent | 272534c8a7517d08c70928c96d487d84b14772f6 (diff) |
cleanup and streamlining of scrapbook code.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 4ad9c9bd8..aea636040 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -331,6 +331,9 @@ export class DocumentOptions { toolType?: string; // type of pen tool expertMode?: BOOLt = new BoolInfo('something available only in expert (not novice) mode'); + placeholder_docType?: STRt = new StrInfo('type of document that this document accepts as a child', false, false, Array.from(Object.keys(DocumentType))); + placeholder_acceptTags?: List<string>; + contextMenuFilters?: List<ScriptField>; contextMenuScripts?: List<ScriptField>; contextMenuLabels?: List<string>; |