aboutsummaryrefslogtreecommitdiff
path: root/src/client/documents/Documents.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-02-26 12:35:35 -0500
committerbobzel <zzzman@gmail.com>2021-02-26 12:35:35 -0500
commitfce6c26e2f62ffc21702a2edc64e0ee00828825e (patch)
treed369c7d6d70cdc97e6c25ead6e880d1a67d59233 /src/client/documents/Documents.ts
parentfeac7f17533c4b587cadc783fbd5f47c464d40db (diff)
minimal cleanup of standard fields. fix to error thrown in document buttonbar
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r--src/client/documents/Documents.ts3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts
index de08040e2..d8a77bfdb 100644
--- a/src/client/documents/Documents.ts
+++ b/src/client/documents/Documents.ts
@@ -90,7 +90,6 @@ type PEVt = PEInfo | "none" | "all";
type DROPt = DAInfo | dropActionType;
export class DocumentOptions {
system?: BOOLt = new BoolInfo("is this a system created/owned doc");
- userDoc?: DOCt = new DocInfo("the user doc");
dropAction?: DROPt = new DAInfo("what should happen to the source document when it's dropped onto this doc ");
childDropAction?: DROPt = new DAInfo("what should happen to the source document when it's dropped onto a child of a collection ");
targetDropAction?: DROPt = new DAInfo("what should happen to the source document when ??? ");
@@ -140,8 +139,6 @@ export class DocumentOptions {
label?: string;
hidden?: boolean;
toolTip?: string; // tooltip to display on hover
- style?: string;
- page?: number;
dontUndo?: boolean; // whether button clicks should be undoable (this is set to true for Undo/Redo/and sidebar buttons that open the siebar panel)
description?: string; // added for links
_viewScale?: number;