Remove mention of vector.im as default identity server on mobile guide

Signed-off-by: Aaron Raimist <aaron@raim.ist>
pull/11544/head
Aaron Raimist 2019-11-27 19:26:18 -06:00
parent b9984ab1f8
commit 3397165036
No known key found for this signature in database
GPG Key ID: 37419210002890EF
2 changed files with 1 additions and 3 deletions

View File

@ -333,7 +333,6 @@ body {
<a class="mx_Button" id="configure_riot_button" href="#">Configure</a>
<p class="mx_Subtext mx_SubtextTop">Tap the button above, or manually enable <em>Use custom server</em> and enter:</p>
<p class="mx_Subtext">Homeserver: <em id="hs_url"></em></p>
<p class="mx_Subtext" id="default_is">Identity Server: <em>https://vector.im</em> (default)</p>
<p class="mx_Subtext" id="custom_is">Identity Server: <em id="is_url"></em></p>
</div>
</div>

View File

@ -99,8 +99,7 @@ async function initPage() {
document.getElementById('step2_container').style.display = 'block';
document.getElementById('hs_url').innerText = hsUrl;
if (isUrl && isUrl !== "https://vector.im/") {
document.getElementById('default_is').style.display = 'none';
if (isUrl) {
document.getElementById('custom_is').style.display = 'block';
document.getElementById('is_url').style.display = 'block';
document.getElementById('is_url').innerText = isUrl;