diff --git a/interface/src/scripting/WindowScriptingInterface.h b/interface/src/scripting/WindowScriptingInterface.h index d05145acb2..eab1c65ebb 100644 --- a/interface/src/scripting/WindowScriptingInterface.h +++ b/interface/src/scripting/WindowScriptingInterface.h @@ -609,7 +609,7 @@ public slots: void setActiveDisplayPlugin(int index); /**jsdoc - * Opens `Browser.qml` in a pop-up window. + * Opens a web browser in a pop-up window. * @function Window.openWebBrowser */ void openWebBrowser(); diff --git a/scripts/system/keyboardShortcuts/keyboardShortcuts.js b/scripts/system/keyboardShortcuts/keyboardShortcuts.js index 1021f54662..cf3927ac2d 100644 --- a/scripts/system/keyboardShortcuts/keyboardShortcuts.js +++ b/scripts/system/keyboardShortcuts/keyboardShortcuts.js @@ -14,7 +14,6 @@ (function () { // BEGIN LOCAL_SCOPE function keyPressEvent(event) { if (event.text.toUpperCase() === "B" && event.isControl) { - console.log("TEST B"); Window.openWebBrowser(); } else if (event.text.toUpperCase() === "N" && event.isControl) { Users.toggleIgnoreRadius();