mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-06 20:32:56 +02:00
Places App: Enter to teleport
This PR add the possibility to press "Enter" to initiate a teleportation from the value in the search/address bar of the Places App. (In addition to the current teleport button) This is a more intuitive behaviour since everyone is used to this in the web browsers.
This commit is contained in:
parent
0bfdf92647
commit
cb4a443920
1 changed files with 13 additions and 7 deletions
|
@ -486,7 +486,7 @@
|
|||
"channel": channel,
|
||||
"action": "GO_HOME"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function goBack() {
|
||||
|
@ -494,7 +494,7 @@
|
|||
"channel": channel,
|
||||
"action": "GO_BACK"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function goForward() {
|
||||
|
@ -502,7 +502,7 @@
|
|||
"channel": channel,
|
||||
"action": "GO_FORWARD"
|
||||
};
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
EventBridge.emitWebEvent(JSON.stringify(message));
|
||||
}
|
||||
|
||||
function pinMetaverse(metaverseIndex, pinned) {
|
||||
|
@ -569,8 +569,8 @@
|
|||
} else {
|
||||
externalFilter = true;
|
||||
document.getElementById("extPlacesFilter").className = "externalFilterOn";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
loadRecordsUpTo = NUMBER_OF_RECORDS_PER_LOAD;
|
||||
generateContent();
|
||||
|
@ -627,13 +627,13 @@
|
|||
document.getElementById("maturityEveryone").className = "filterOff";
|
||||
} else {
|
||||
document.getElementById("maturityEveryone").className = "everyoneFilterOn";
|
||||
}
|
||||
}
|
||||
|
||||
if (maturityFilter.indexOf("unrated") === -1) {
|
||||
document.getElementById("maturityUnrated").className = "filterOff";
|
||||
} else {
|
||||
document.getElementById("maturityUnrated").className = "unratedFilterOn";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function displaySearchFieldsFilter() {
|
||||
|
@ -669,6 +669,12 @@
|
|||
generateContent();
|
||||
}
|
||||
|
||||
document.addEventListener("keyup", function(event) {
|
||||
if (event.keyCode === 13) {
|
||||
teleportUsingAddressBarValue(document.getElementById("search").value);
|
||||
}
|
||||
});
|
||||
|
||||
function teleportUsingAddressBarValue(url) {
|
||||
var finalizedUrl = url;
|
||||
if (url.substr(0, 7).toLocaleLowerCase() !== "http://" &&
|
||||
|
|
Loading…
Reference in a new issue