From e606ffb002f6f0964796107d739e328b33b9199d Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Fri, 17 Jun 2016 18:12:03 -0700 Subject: [PATCH] use constant rather than hard-coding metaverse url --- domain-server/resources/web/settings/js/settings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domain-server/resources/web/settings/js/settings.js b/domain-server/resources/web/settings/js/settings.js index 5fc126fbea..9d1719adbe 100644 --- a/domain-server/resources/web/settings/js/settings.js +++ b/domain-server/resources/web/settings/js/settings.js @@ -617,7 +617,7 @@ function setupPlacesTable() { label: 'Places', html_id: Settings.PLACES_TABLE_ID, help: "The following places currently point to this domain.
To point places to this domain, " - + " go to the My Places " + + " go to the My Places " + "page in your High Fidelity Metaverse account.", read_only: true, columns: [ @@ -759,7 +759,7 @@ function chooseFromHighFidelityDomains(clickedButton) { modal_buttons["success"] = { label: 'Create new domain', callback: function() { - window.open("https://metaverse.highfidelity.com/user/domains", '_blank'); + window.open(Settings.METAVERSE_URL + "/user/domains", '_blank'); } } modal_body = "

You do not have any domains in your High Fidelity account." +