diff options
author | Marvin Borner | 2021-01-29 14:42:34 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-29 14:42:34 +0100 |
commit | 4482d4ca8a69dcfa3b082436a02cf25ee0870be0 (patch) | |
tree | 00c26423aefd7843499aba519432de9760cb6c59 /profile/public/user.js | |
parent | aec1e8f2cd4c0fdedd200fc30094587c0834d372 (diff) |
blabla
Diffstat (limited to 'profile/public/user.js')
-rw-r--r-- | profile/public/user.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/profile/public/user.js b/profile/public/user.js index 963904c..936118e 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -164,6 +164,7 @@ function addChar(char) { }); const inp = document.createElement("input"); const btn = document.createElement("button"); + btn.classList.add("pure-button", "pure-button-primary"); btn.textContent = "Senden"; if (char.hasOwnProperty("txt")) { @@ -181,6 +182,7 @@ function addChar(char) { headers: { "Content-Type": "application/json" }, body, }); + alert("Okidoki, danke!"); }); const div = document.createElement("div"); div.style.display = "flex"; |