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 2726bca commit fe4c8d3Copy full SHA for fe4c8d3
docs/arbitrary-ports.rst
@@ -80,9 +80,9 @@ accessing it from a classic notebook extension.
80
import { PageConfig } from '@jupyterlab/coreutils';
81
82
// Get base URL of current notebook server
83
- let baseUrl = PageConfig.getBaseUrl()
+ let base_url = PageConfig.getBaseUrl()
84
85
// Construct URL of our proxied service
86
- let serviceUrl = base_url + 'proxy/' + port;
+ let service_url = base_url + 'proxy/' + port;
87
88
- // Do stuff with your serviceUrl
+ // Do stuff with your service_url
0 commit comments