mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 20:58:38 +02:00
Merge pull request #4530 from birarda/master
fix for marketplace URL on right click
This commit is contained in:
commit
9f0e146782
1 changed files with 1 additions and 1 deletions
|
@ -1355,7 +1355,7 @@ var propertyMenu = PopupMenu();
|
||||||
|
|
||||||
propertyMenu.onSelectMenuItem = function(name) {
|
propertyMenu.onSelectMenuItem = function(name) {
|
||||||
if (propertyMenu.marketplaceID) {
|
if (propertyMenu.marketplaceID) {
|
||||||
var url = "https://metaverse.highfidelity.io/marketplace/items/" + propertyMenu.marketplaceID;
|
var url = MARKETPLACE_URL + "/items/" + propertyMenu.marketplaceID;
|
||||||
if (marketplaceWindow.url != url) {
|
if (marketplaceWindow.url != url) {
|
||||||
marketplaceWindow.setURL(url);
|
marketplaceWindow.setURL(url);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue