We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1342a5a commit 2f513acCopy full SHA for 2f513ac
src/index.tsx
@@ -215,7 +215,14 @@ function App() {
215
);
216
217
return (
218
- <div className="lonboard" style={{ minHeight: "100%", height: mapHeight }}>
+ <div
219
+ className="lonboard"
220
+ style={{ minHeight: "100%", height: mapHeight }}
221
+ // This attribute suppresses the context menu on right click in JupyterLab
222
+ // https://jupyterlab.readthedocs.io/en/latest/extension/extension_points.html#context-menu
223
+ // https://jupyter.zulipchat.com/#narrow/channel/471314-geojupyter/topic/Possible.20to.20disable.20JupyterLab.20popup.20on.20right.20click.3F/near/541082696
224
+ data-jp-suppress-context-menu
225
+ >
226
<div
227
id={`map-${mapId}`}
228
className="flex"
0 commit comments