mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 22:10:25 +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) {
|
if (paramKeyValue.length == 1) {
|
||||||
params[paramKeyValue[0]] = undefined;
|
params[paramKeyValue[0]] = undefined;
|
||||||
} else if (paramKeyValue.length == 2) {
|
} else if (paramKeyValue.length == 2) {
|
||||||
console.log('found ' + paramKeyValue[0] + " " + paramKeyValue[1]);
|
|
||||||
params[paramKeyValue[0]] = paramKeyValue[1];
|
params[paramKeyValue[0]] = paramKeyValue[1];
|
||||||
} else {
|
} else {
|
||||||
console.error("Error parsing param keyvalue: ", paramParts);
|
console.error("Error parsing param keyvalue: ", paramParts);
|
||||||
|
@ -83,7 +82,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function load() {
|
function load() {
|
||||||
console.log("In help.html: ", window.location.href);
|
|
||||||
var parts = window.location.href.split("?");
|
var parts = window.location.href.split("?");
|
||||||
var params = {};
|
var params = {};
|
||||||
if (parts.length > 0) {
|
if (parts.length > 0) {
|
||||||
|
@ -92,7 +90,6 @@
|
||||||
|
|
||||||
switch (params.handControllerName) {
|
switch (params.handControllerName) {
|
||||||
case "oculus":
|
case "oculus":
|
||||||
console.log("Using oculus image");
|
|
||||||
handControllerImageURL = "img/controls-help-oculus.png";
|
handControllerImageURL = "img/controls-help-oculus.png";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue