aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/static/scripts.js
diff options
context:
space:
mode:
Diffstat (limited to 'juick-www/src/main/static/scripts.js')
-rw-r--r--juick-www/src/main/static/scripts.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js
index 08c02a9e..619ec7a0 100644
--- a/juick-www/src/main/static/scripts.js
+++ b/juick-www/src/main/static/scripts.js
@@ -386,24 +386,6 @@ function showCommentForm(mid, rid) {
}
}
-function showCommentFooter(e, mid, rid) {
- let a = e.closest('article');
- if (!a.querySelector('footer.comm')) {
- let form = replyForm(mid, rid);
- let footer = document.createElement('footer');
- footer.setAttribute('class', 'comm');
- footer.appendChild(taWrapper());
- let subm = document.createElement('input');
- subm.setAttribute('type', 'submit');
- subm.setAttribute('value', 'OK');
- footer.appendChild(subm);
- form.appendChild(footer);
- a.appendChild(form);
- autosize(a.querySelector('textarea'));
- }
- a.querySelector('textarea').focus();
-}
-
function attachInput() {
let inp = document.createElement('input');
inp.setAttribute('type', 'file');