From 146acad50fe7b76909cbae2dc85733c507f7b216 Mon Sep 17 00:00:00 2001 From: ryanlovett Date: Thu, 4 Apr 2024 11:01:12 -0700 Subject: [PATCH] Document the correct default value for new_browser_tab. Fixes #469. --- docs/source/server-process.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/server-process.md b/docs/source/server-process.md index 5f2b4ea9..59f64094 100644 --- a/docs/source/server-process.md +++ b/docs/source/server-process.md @@ -129,8 +129,8 @@ the following keys: ### `new_browser_tab` -_JupyterLab only_ - _True_ if the proxied server URL should be opened in a new browser tab. -_False_ (default) if the proxied server URL should be opened in a new JupyterLab tab. +_JupyterLab only_ - _True_ (default) if the proxied server URL should be opened in a new browser tab. +_False_ if the proxied server URL should be opened in a new JupyterLab tab. If _False_, the proxied server needs to allow its pages to be rendered in an iframe. This is generally done by configuring the web server `X-Frame-Options` to `SAMEORIGIN`.