diff options
author | LarsVomMars | 2021-02-06 20:34:19 +0100 |
---|---|---|
committer | LarsVomMars | 2021-02-06 20:34:19 +0100 |
commit | 19ed7cdbe9b911d08f3e689d1f7c2e36780f71aa (patch) | |
tree | 2833d33ec353caed8bc2ec45d43a4c4399dfe298 /admin/public/prediction.js | |
parent | 5e950bf5b3ed34c48421ab228132dd25dee76d6e (diff) |
Lulz
Diffstat (limited to 'admin/public/prediction.js')
-rw-r--r-- | admin/public/prediction.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/admin/public/prediction.js b/admin/public/prediction.js index 914f910..e2e1855 100644 --- a/admin/public/prediction.js +++ b/admin/public/prediction.js @@ -12,8 +12,10 @@ fetch("api/prediction") const div = document.createElement("div"); div.dataset.teacher = `${d.tid}`; const h3 = document.createElement("h3"); - const email = `${san(d.tname)}.${san(d.tsur)}@rbs-ulm.de`; - h3.textContent = `${d.tname} ${d.tsur}: ${email}`; + const a = document.createElement("a"); + a.href = `mailto:${san(d.tname)}.${san(d.tsur)}@rbs-ulm.de`; + a.textContent = `${d.tname} ${d.tsur}`; + h3.append(a); const ul = document.createElement("ul"); addLI(d, ul); div.append(h3, ul); |