aboutsummaryrefslogtreecommitdiff
path: root/static/bottom.html
diff options
context:
space:
mode:
authorFChannel <>2021-07-03 19:46:32 -0700
committerFChannel <>2021-07-03 19:46:32 -0700
commit068e6caf8dfa3fb36dd9f74b9070f41f801e9c8d (patch)
tree085747b8bf6fab8aa79b5a9bc238370b30a6df4b /static/bottom.html
parent02d55188670a599048486c36e896416d917e831c (diff)
fixed bug with reply/report box not closing when submitting post
Diffstat (limited to 'static/bottom.html')
-rw-r--r--static/bottom.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/static/bottom.html b/static/bottom.html
index 994ad89..9d920c0 100644
--- a/static/bottom.html
+++ b/static/bottom.html
@@ -1,7 +1,7 @@
{{ define "bottom" }}
<div id="reply-box" class="popup-box" style="display: none;">
<div id="reply-header" style="display: inline-block; width: 370px; z-index: 0; cursor: move;"></div><div id="reply-close" style="display: inline-block; float: right;"><a href="javascript:closeReply()">[X]</a></div>
- <form id="reply-post" action="/post" method="post" enctype="multipart/form-data">
+ <form onsubmit="sessionStorage.setItem('element-closed-reply', true)" id="reply-post" action="/post" method="post" enctype="multipart/form-data">
<input id="reply-name" name="name" size="43" type="text" placeholder="Name" maxlength="100">
<input id="reply-options" name="options" size="43" type="text" placeholder="Options" maxlength="100">
<textarea id="reply-comment" name="comment" rows="12" cols="54" style="width: 396px;" maxlength="2000" oninput="sessionStorage.setItem('element-reply-comment', document.getElementById('reply-comment').value)"></textarea>
@@ -25,7 +25,7 @@
<div id="report-box" class="popup-box" style="display: none; ">
<div id="report-header" style="text-align: center; display: inline-block; width: 370px; z-index: 0; cursor: move;"></div><div id="report-close" style="display: inline-block; float: right;"><a href="javascript:closeReport()">[X]</a></div>
- <form id="report-post" action="/report" method="post">
+ <form onsubmit="sessionStorage.setItem('element-closed-report', true)" id="report-post" action="/report" method="post">
<label for="comment">Reason:</label>
<textarea id="report-comment" name="comment" rows="12" cols="54" style="width: 396px;" maxlength="100" oninput="sessionStorage.setItem('element-report-comment', document.getElementById('report-comment').value)"></textarea>
<input id="report-submit" type="submit" value="Report" style="float: right;">