summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/webconsole-ui.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
commit086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch)
treea4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /devtools/client/webconsole/webconsole-ui.js
parentAdding debian version 124.0.1-1. (diff)
downloadfirefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz
firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/webconsole/webconsole-ui.js')
-rw-r--r--devtools/client/webconsole/webconsole-ui.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/devtools/client/webconsole/webconsole-ui.js b/devtools/client/webconsole/webconsole-ui.js
index 7dfa44a402..a12f1f3983 100644
--- a/devtools/client/webconsole/webconsole-ui.js
+++ b/devtools/client/webconsole/webconsole-ui.js
@@ -535,12 +535,8 @@ class WebConsoleUI {
* i.e. it was already existing or has just been created.
*
* @private
- * @param Front targetFront
- * The Front of the target that is available.
- * This Front inherits from TargetMixin and is typically
- * composed of a WindowGlobalTargetFront or ContentProcessTargetFront.
*/
- async _onTargetAvailable({ targetFront }) {
+ async _onTargetAvailable() {
// onTargetAvailable is a mandatory argument for watchTargets,
// we still define it solely for being able to use onTargetDestroyed.
}
@@ -687,7 +683,7 @@ class WebConsoleUI {
this.hud.commands.targetCommand.reloadTopLevelTarget();
});
} else if (Services.prefs.getBoolPref(PREF_SIDEBAR_ENABLED)) {
- shortcuts.on("Esc", event => {
+ shortcuts.on("Esc", () => {
this.wrapper.dispatchSidebarClose();
if (this.jsterm) {
this.jsterm.focus();