diff options
author | bobzel <zzzman@gmail.com> | 2023-03-01 11:57:05 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-03-01 11:57:05 -0500 |
commit | 9c63f3833f15cc995c2255b83923384686127f3e (patch) | |
tree | 79e5cfba4088bab317263b7ca9059703019671ea /src/client/views/nodes/MapBox/MapBox.tsx | |
parent | 5e7989da274606638c96f649e97e9d1a979956f5 (diff) |
changed inPlace link following to be lightbox. allowed collections to be labeled as lightboxes. lightbox collections display link targets in an overlay that hides the rest of their content
Diffstat (limited to 'src/client/views/nodes/MapBox/MapBox.tsx')
-rw-r--r-- | src/client/views/nodes/MapBox/MapBox.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/nodes/MapBox/MapBox.tsx b/src/client/views/nodes/MapBox/MapBox.tsx index 039f11cd1..c182dfd19 100644 --- a/src/client/views/nodes/MapBox/MapBox.tsx +++ b/src/client/views/nodes/MapBox/MapBox.tsx @@ -331,7 +331,6 @@ export class MapBox extends ViewBoxAnnotatableComponent<ViewBoxAnnotatableProps docs.forEach(doc => { if (doc.lat !== undefined && doc.lng !== undefined) { const existingMarker = this.allMapMarkers.find(marker => marker.lat === doc.lat && marker.lng === doc.lng); - doc.onClickBehavior = 'enterPortal'; if (existingMarker) { Doc.AddDocToList(existingMarker, 'data', doc); } else { |