diff options
author | bobzel <zzzman@gmail.com> | 2022-11-14 14:29:48 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2022-11-14 14:29:48 -0500 |
commit | 3d8bd17fa4f031f2223840b336c313a18e7e87aa (patch) | |
tree | 6001c3845c043299690b4ff20a65f600df9e8b7b /src/client/views/MainView.tsx | |
parent | 7bde06fc756684d47c89c65199492daef5fe5b63 (diff) |
fixed following link 'inPlace' from within lightbox to do same thing as if out of lightbox. fixed contentActive behavior for multicolumn view. removed progressivize from presbox.
Diffstat (limited to 'src/client/views/MainView.tsx')
-rw-r--r-- | src/client/views/MainView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/MainView.tsx b/src/client/views/MainView.tsx index 9648a7807..987bfc23d 100644 --- a/src/client/views/MainView.tsx +++ b/src/client/views/MainView.tsx @@ -690,11 +690,11 @@ export class MainView extends React.Component { switch (locationFields[0]) { default: case 'inPlace': + case 'lightbox': return LightboxView.AddDocTab(doc, location); case 'add': return CollectionDockingView.AddSplit(doc, locationParams); case 'dashboard': return DashboardView.openDashboard(doc); case 'close': return CollectionDockingView.CloseSplit(doc, locationParams); case 'fullScreen': return CollectionDockingView.OpenFullScreen(doc); - case 'lightbox': return LightboxView.AddDocTab(doc, location); case 'toggle': return CollectionDockingView.ToggleSplit(doc, locationParams); } }; |