From 38afa6b5c29fd0b9108232fb4b4199cd244d88ed Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Thu, 3 Oct 2019 16:47:09 -0700 Subject: [PATCH] Move to correct place --- domain-server/resources/web/settings/js/settings.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/domain-server/resources/web/settings/js/settings.js b/domain-server/resources/web/settings/js/settings.js index bd0c6f92c9..7d08ab4459 100644 --- a/domain-server/resources/web/settings/js/settings.js +++ b/domain-server/resources/web/settings/js/settings.js @@ -77,10 +77,6 @@ $(document).ready(function(){ appendDomainIDButtons(); } - if (getCurrentDomainIDType() === DOMAIN_ID_TYPE_TEMP) { - $(Settings.DOMAIN_ID_SELECTOR).siblings('span').append("
This is a temporary domain and will not be visible in your domain list. You can create a new Domain ID to register your domain."); - } - handleAction(); }); } @@ -871,6 +867,10 @@ $(document).ready(function(){ } } + if (getCurrentDomainIDType() === DOMAIN_ID_TYPE_TEMP) { + $(Settings.DOMAIN_ID_SELECTOR).siblings('span').append(" This is a temporary domain and will not be visible in your domain list."); + } + if (accessTokenIsSet()) { appendAddButtonToPlacesTable(); }