mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 04:07:11 +02:00
Remove extraneous logging from help.html
This commit is contained in:
parent
9f166d82ce
commit
47c2af975b
1 changed files with 0 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue