Better link generation

This commit is contained in:
Quentin 2020-04-19 15:54:31 +02:00
parent 25468bcc06
commit 2a14947128
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ block content
}
joinname.addEventListener('input', v => {
const l = get_meeting_url(v.target.value)
const l = v.target.value ? get_meeting_url(v.target.value) : ""
joinlink.textContent = l
joinlink.href = l
})