diff options
author | Marvin Borner | 2021-02-17 14:30:36 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-17 14:30:36 +0100 |
commit | a8f9e403c8ef789f25f75625908dbb184431252e (patch) | |
tree | 7901327188056b955620749d972689fb6f5571d6 /profile/public | |
parent | 71a060ba84908b8efe04b293ed61eb4412b53524 (diff) |
Added comment maxlength
Diffstat (limited to 'profile/public')
-rw-r--r-- | profile/public/user.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/profile/public/user.js b/profile/public/user.js index 141ba54..dbceafc 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -96,8 +96,9 @@ async function addComments(comments) { const inputDiv = document.createElement("div"); const input = document.createElement("textarea"); - input.placeholder = "Dein Kommentar..."; + input.placeholder = "Dein Kommentar (max. 280 Zeichen)"; input.value = comment.comment; + input.maxLength = 280; const submit = document.createElement("input"); submit.type = "submit"; submit.value = "Speichern"; @@ -139,7 +140,8 @@ async function addComments(comments) { add.addEventListener("click", (evt) => { const div = document.createElement("div"); const input = document.createElement("textarea"); - input.placeholder = "Dein Kommentar..."; + input.placeholder = "Dein Kommentar (max. 280 Zeichen)"; + input.maxLength = 280; const submit = document.createElement("input"); submit.type = "submit"; submit.value = "Hinzufügen"; |