From d3409a6ecd735ffed474eded4d46021f58b11e05 Mon Sep 17 00:00:00 2001 From: Beth <44749113+bethylogism@users.noreply.github.com> Date: Tue, 3 Nov 2020 10:40:03 +0000 Subject: [PATCH] Update keyboard shortcut for Mac Remove "simply" modifier, as there may not be anything simple about it. I could not "locate the format icon", so I have replaced it with a more obvious description of a route to the awesome de-minifier that does seem to work. --- src/pages/debugger/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/debugger/index.js b/src/pages/debugger/index.js index 5af17ee2..7f860dcc 100644 --- a/src/pages/debugger/index.js +++ b/src/pages/debugger/index.js @@ -28,7 +28,7 @@ const Tutorial = () => (

Before diving in, let’s take a look at the Debugger interface. Hit{' '} option + command +{' '} - S on Mac or shift +{' '} + Z on Mac or shift +{' '} ctrl + S on Windows to open the Debugger.{' '}

@@ -97,7 +97,7 @@ const Homework = () => (

Give it a try! The link below will bring you to a to-do app that is using a minified - JavaScript file. Simply: + JavaScript file:

  1. @@ -111,12 +111,12 @@ const Homework = () => (
  2. Open Debugger (option +{' '} - command + S on Mac or{' '} + command + Z on Mac or{' '} shift + control +{' '} S on Windows)
  3. -
  4. Find and click on app.js in the source list pane
  5. -
  6. Locate and click on the format icon
  7. +
  8. Find and click on app.js in the source list pane on the left
  9. +
  10. When app.js opens in the central source pane, right click on the `app.js` tab and select `Pretty Print Source`
);