Skip to content

Commit

Permalink
Merge pull request #3818 from jasongrout/docs4
Browse files Browse the repository at this point in the history
Left Area -> Left Sidebar in menu
  • Loading branch information
jzf2101 committed May 18, 2018
2 parents 473348d + ce6ce62 commit 90e5d7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/source/user/interface.rst
Expand Up @@ -57,11 +57,11 @@ and a list of tabs in the main work area:

.. _left-sidebar-toggle:

The left sidebar can be collapsed or expanded by selecting "Show Left Area"
The left sidebar can be collapsed or expanded by selecting "Show Left Sidebar"
in the View menu or by clicking on the active sidebar tab:


.. raw:: html
.. raw:: html

<div class="jp-youtube-video">
<iframe src="https://www.youtube-nocookie.com/embed/PlJGecfetek?rel=0&amp;showinfo=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
Expand Down
4 changes: 2 additions & 2 deletions packages/application-extension/src/index.tsx
Expand Up @@ -280,7 +280,7 @@ function addCommands(app: JupyterLab, palette: ICommandPalette): void {

command = CommandIDs.toggleLeftArea;
app.commands.addCommand(command, {
label: args => 'Show Left Area',
label: args => 'Show Left Sidebar',
execute: () => {
if (app.shell.leftCollapsed) {
app.shell.expandLeft();
Expand All @@ -298,7 +298,7 @@ function addCommands(app: JupyterLab, palette: ICommandPalette): void {

command = CommandIDs.toggleRightArea;
app.commands.addCommand(command, {
label: args => 'Show Right Area',
label: args => 'Show Right Sidebar',
execute: () => {
if (app.shell.rightCollapsed) {
app.shell.expandRight();
Expand Down

0 comments on commit 90e5d7e

Please sign in to comment.