diff options
author | bobzel <zzzman@gmail.com> | 2025-03-05 14:54:18 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-03-05 14:54:18 -0500 |
commit | db3bdb19ff7bc1c69c544797c05a6db3b72b1464 (patch) | |
tree | fe01be9276ffcbaf9e27bb17e8f1fe7a25b22505 /src/client/documents/Documents.ts | |
parent | 9688e3bb1e67336fe57e11b186936830d5483b06 (diff) |
added:hover mode for images to make primary image fade in instead of alternate.
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 1ce25165c..21d3c978b 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -384,6 +384,9 @@ export class DocumentOptions { presentation_duration?: NUMt = new NumInfo('the duration of the slide in presentation view', false); presentation_zoomText?: BOOLt = new BoolInfo('whether text anchors should shown in a larger box when following links to make them stand out', false); + data_annotations?: List<Doc>; + _data_usePath?: STRt = new StrInfo("description of field key to display in image box ('alternate','alternate:hover', 'data:hover'). defaults to primary", false); + data_alternates?: List<Doc>; data?: FieldType; data_useCors?: BOOLt = new BoolInfo('whether CORS protocol should be used for web page'); _face_showImages?: BOOLt = new BoolInfo('whether to show images in uniqe face Doc'); |