mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 18:23:54 +02:00
repairs for new user scoped paths
This commit is contained in:
parent
30740afe80
commit
ea4c5a8900
2 changed files with 3 additions and 3 deletions
|
@ -292,7 +292,7 @@ function chooseFromHighFidelityDomains(clickedButton) {
|
|||
modal_buttons["success"] = {
|
||||
label: 'Create new domain',
|
||||
callback: function() {
|
||||
window.open("https://data.highfidelity.io/domains", '_blank');
|
||||
window.open("https://data.highfidelity.io/users/domains", '_blank');
|
||||
}
|
||||
}
|
||||
modal_body = "<p>You do not have any domains in your High Fidelity account." +
|
||||
|
|
|
@ -1234,7 +1234,7 @@ void Menu::toggleLocationList() {
|
|||
if (!_userLocationsDialog) {
|
||||
JavascriptObjectMap locationObjectMap;
|
||||
locationObjectMap.insert("InterfaceLocation", LocationScriptingInterface::getInstance());
|
||||
_userLocationsDialog = DataWebDialog::dialogForPath("/locations", locationObjectMap);
|
||||
_userLocationsDialog = DataWebDialog::dialogForPath("/user/locations", locationObjectMap);
|
||||
}
|
||||
|
||||
if (!_userLocationsDialog->isVisible()) {
|
||||
|
@ -1278,7 +1278,7 @@ void Menu::nameLocation() {
|
|||
if (!_newLocationDialog) {
|
||||
JavascriptObjectMap locationObjectMap;
|
||||
locationObjectMap.insert("InterfaceLocation", LocationScriptingInterface::getInstance());
|
||||
_newLocationDialog = DataWebDialog::dialogForPath("/locations/new", locationObjectMap);
|
||||
_newLocationDialog = DataWebDialog::dialogForPath("/user/locations/new", locationObjectMap);
|
||||
}
|
||||
|
||||
if (!_newLocationDialog->isVisible()) {
|
||||
|
|
Loading…
Reference in a new issue