aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/tools/debugger/configurações/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/tools/debugger/configurações/index.html')
-rw-r--r--files/pt-pt/tools/debugger/configurações/index.html59
1 files changed, 0 insertions, 59 deletions
diff --git a/files/pt-pt/tools/debugger/configurações/index.html b/files/pt-pt/tools/debugger/configurações/index.html
deleted file mode 100644
index bd111e5058..0000000000
--- a/files/pt-pt/tools/debugger/configurações/index.html
+++ /dev/null
@@ -1,59 +0,0 @@
----
-title: Configurações
-slug: Tools/Debugger/Configurações
-translation_of: Archive/Tools/Debugger_settings
----
-<div>{{ToolsSidebar}}</div><p>O Depurador tem o seu próprio menu de configurações, que pode aceder a partir de um ícone na <a href="/en-US/docs/Tools/Debugger/UI_Tour#toolbar">barra de ferramentas</a>:</p>
-
-<p><img alt="" src="https://mdn.mozillademos.org/files/12930/debugger-options.png" style="display: block; height: 413px; margin-left: auto; margin-right: auto; width: 845px;"></p>
-
-<p>Cada definição é um comutador simples de lig./desl.:</p>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <td style="width: 40%;"><strong>Auto Prettify Minified Sources</strong></td>
- <td>With this option enabled, the debugger will automatically detect minified JS files and <a href="/en-US/docs/Tools/Debugger/How_to/Pretty-print_a_minified_file">pretty-print</a> them.</td>
- </tr>
- <tr>
- <td><strong>Pause on Exceptions</strong></td>
- <td>When this option is enabled, execution of the script will automatically pause whenever a JavaScript exception is thrown.</td>
- </tr>
- <tr>
- <td><strong>Ignore Caught Exceptions</strong></td>
- <td>
- <p>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.</p>
-
- <p>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.</p>
- </td>
- </tr>
- <tr>
- <td><strong>Show Panes on Startup</strong></td>
- <td>When this option is enabled, the debugger's <a href="https://developer.mozilla.org/en-US/docs/Tools/Debugger/UI_Tour#Variables_pane" title="#variables-pane">variables pane</a> is visible when you first start the debugger.</td>
- </tr>
- <tr>
- <td><strong>Show Only Enumerable Properties</strong></td>
- <td>Do not display non-enumerable JavaScript properties.</td>
- </tr>
- <tr>
- <td><strong>Show Variables Filter Box</strong></td>
- <td>Enabling this option adds a "Filter variables" search box to the <a href="https://developer.mozilla.org/en-US/docs/Tools/Debugger/UI_Tour#Variables_pane" title="#variables-pane">variables pane</a>, so that you can filter the displayed list of variables.</td>
- </tr>
- <tr>
- <td><strong>Show Original Sources</strong></td>
- <td>Enabling this option will make the debugger use <a class="external external-icon" href="http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/" title="http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/">source maps</a>, 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.</td>
- </tr>
- <tr>
- <td><strong>Automatically Black Box Minified Sources</strong></td>
- <td>
- <div class="geckoVersionNote">
- <p>New in Firefox 33.</p>
- </div>
-
- <p><span id="summary_alias_container"><span id="short_desc_nonedit_display">Automatically <a href="/en-US/docs/Tools/Debugger/How_to/Black_box_a_source">black box</a> sources whose URL ends with ".min.js". Defaults to true.</span></span></p>
- </td>
- </tr>
- </tbody>
-</table>
-
-<p> </p>