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/MainView.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/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 1e9220e1e..95c0f3755 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -692,7 +692,6 @@ export class MainView extends React.Component { if (doc.dockingConfig) return DashboardView.openDashboard(doc); // prettier-ignore switch (whereFields[0]) { - case OpenWhere.inPlace: // fall through to lightbox case OpenWhere.lightbox: return LightboxView.AddDocTab(doc, location); case OpenWhere.dashboard: return DashboardView.openDashboard(doc); case OpenWhere.fullScreen: return CollectionDockingView.OpenFullScreen(doc); |