From 47c2af975b2c21e257a7418228e219b45e6e83c2 Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Mon, 12 Dec 2016 14:22:59 -0800 Subject: [PATCH] Remove extraneous logging from help.html --- interface/resources/html/help.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/interface/resources/html/help.html b/interface/resources/html/help.html index fabaebef7c..1c70300297 100644 --- a/interface/resources/html/help.html +++ b/interface/resources/html/help.html @@ -73,7 +73,6 @@ if (paramKeyValue.length == 1) { params[paramKeyValue[0]] = undefined; } else if (paramKeyValue.length == 2) { - console.log('found ' + paramKeyValue[0] + " " + paramKeyValue[1]); params[paramKeyValue[0]] = paramKeyValue[1]; } else { console.error("Error parsing param keyvalue: ", paramParts); @@ -83,7 +82,6 @@ } function load() { - console.log("In help.html: ", window.location.href); var parts = window.location.href.split("?"); var params = {}; if (parts.length > 0) { @@ -92,7 +90,6 @@ switch (params.handControllerName) { case "oculus": - console.log("Using oculus image"); handControllerImageURL = "img/controls-help-oculus.png"; break;