diff options
author | bobzel <zzzman@gmail.com> | 2023-09-07 10:04:27 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-09-07 10:04:27 -0400 |
commit | 8485c5430d7feb5eee9cf3e0374afe7fbf0e60cd (patch) | |
tree | 8d94c00c702907a59546deb1d1417a91f13172a4 /src/client/documents/Documents.ts | |
parent | 7a08e2b50696dd1063fa9ad323c8fca5c2fc5886 (diff) |
fixed removing map pins to not reappear. updated config anchors to not be added to annotations list. fixed imageBox to not pass its configs on to its parent collection when focusing.
Diffstat (limited to 'src/client/documents/Documents.ts')
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index bfb07325d..e413d4389 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -313,6 +313,7 @@ export class DocumentOptions { _isTimelineLabel?: BOOLt = new BoolInfo('is document a timeline label'); _isLightbox?: BOOLt = new BoolInfo('whether a collection acts as a lightbox by opening lightbox links by hiding all other documents in collection besides link target'); + mapPin?: DOCt = new DocInfo('pin associated with a config anchor', false); config_latitude?: NUMt = new NumInfo('latitude of a map', false); config_longitude?: NUMt = new NumInfo('longitude of map', false); config_map_zoom?: NUMt = new NumInfo('zoom of map', false); |