diff options
author | bobzel <zzzman@gmail.com> | 2020-08-03 15:56:08 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-03 15:56:08 -0400 |
commit | 55b95d6a9483911ddde9f4d4c259f380dd77a395 (patch) | |
tree | a0f8b1c4db3b06f49596a792efcc4c2cf9a41a55 /src/client/documents/Documents.ts | |
parent | 061a5a676ad9ebd821b2ba17d28fef54d8a773d0 (diff) |
made adcanced document views a non-novice feature
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index 92942bd58..dbff6a46c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -92,6 +92,7 @@ export interface DocumentOptions { type?: string; title?: string; label?: string; + hidden?: boolean; toolTip?: string; // tooltip to display on hover style?: string; page?: number; @@ -167,6 +168,7 @@ export interface DocumentOptions { clipboard?: Doc; UseCors?: boolean; icon?: string; + target?: Doc; // available for use in scripts as the primary target document sourcePanel?: Doc; // panel to display in 'targetContainer' as the result of a button onClick script targetContainer?: Doc; // document whose proto will be set to 'panel' as the result of a onClick click script searchFileTypes?: List<string>; // file types allowed in a search query |