fixed doc and removed log spam

This commit is contained in:
Preston Bezos 2019-06-28 15:02:33 -07:00
parent b9deb7bb58
commit 1315677aec
2 changed files with 1 additions and 2 deletions

View file

@ -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();

View file

@ -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();