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); void setActiveDisplayPlugin(int index);
/**jsdoc /**jsdoc
* Opens `Browser.qml` in a pop-up window. * Opens a web browser in a pop-up window.
* @function Window.openWebBrowser * @function Window.openWebBrowser
*/ */
void openWebBrowser(); void openWebBrowser();

View file

@ -14,7 +14,6 @@
(function () { // BEGIN LOCAL_SCOPE (function () { // BEGIN LOCAL_SCOPE
function keyPressEvent(event) { function keyPressEvent(event) {
if (event.text.toUpperCase() === "B" && event.isControl) { if (event.text.toUpperCase() === "B" && event.isControl) {
console.log("TEST B");
Window.openWebBrowser(); Window.openWebBrowser();
} else if (event.text.toUpperCase() === "N" && event.isControl) { } else if (event.text.toUpperCase() === "N" && event.isControl) {
Users.toggleIgnoreRadius(); Users.toggleIgnoreRadius();