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(); }