From a065e04d529da1d847b5062a12c46d916408bf32 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 21:46:22 -0500 Subject: update based on https://github.com/mdn/yari/issues/2028 --- files/de/tools/debugger/settings/index.html | 57 ----------------------------- 1 file changed, 57 deletions(-) delete mode 100644 files/de/tools/debugger/settings/index.html (limited to 'files/de/tools/debugger') diff --git a/files/de/tools/debugger/settings/index.html b/files/de/tools/debugger/settings/index.html deleted file mode 100644 index 972e98ff9a..0000000000 --- a/files/de/tools/debugger/settings/index.html +++ /dev/null @@ -1,57 +0,0 @@ ---- -title: Settings -slug: Tools/Debugger/Settings -translation_of: Archive/Tools/Debugger_settings ---- -
{{ToolsSidebar}}

The Debugger has its own settings menu, which you can access from an icon in the toolbar:

- -

Each setting is a simple on/off switch:

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Auto Prettify Minified SourcesWith this option enabled, the debugger will automatically detect minified JS files and pretty-print them.
Pause on ExceptionsWhen this option is enabled, execution of the script will automatically pause whenever a JavaScript exception is thrown.
Ignore Caught Exceptions -

If this option is set (it is set by default) and "Pause on exceptions" is set, then execution will pause on an exception only if that exception is not caught.

- -

This is usually the behavior you want. You don't generally want to pause execution when an exception that is thrown is caught, since that generally indicates that your program is handling it properly.

-
Show Panes on StartupWhen this option is enabled, the debugger's variables pane is visible when you first start the debugger.
Show Only Enumerable PropertiesDo not display non-enumerable JavaScript properties.
Show Variables Filter BoxEnabling this option adds a "Filter variables" search box to the variables pane, so that you can filter the displayed list of variables.
Show Original SourcesEnabling this option will make the debugger use source maps, if they are available, to display the original source for code which has been combined, minified, or even compiled to JavaScript from a language like CoffeeScript. Defaults to true.
Automatically Black Box Minified Sources -
-

New in Firefox 33.

-
- -

Automatically black box sources whose URL ends with ".min.js". Defaults to true.

-
- -

 

-- cgit v1.2.3-54-g00ecf