aboutsummaryrefslogtreecommitdiff
path: root/static/js
diff options
context:
space:
mode:
authorFChannel0 <77419041+FChannel0@users.noreply.github.com>2021-08-20 23:25:47 -0700
committerGitHub <noreply@github.com>2021-08-20 23:25:47 -0700
commitcc4165f07a406cdd89e6a3864cac6a367f281513 (patch)
tree6b8959d49acdb95f57dd10717e729a98e252471f /static/js
parent502558e0bdaf67ca4c012fc1983f42430b8854cd (diff)
parent8d28fd2ad688051fe06813026d82661b76617602 (diff)
Merge pull request #54 from KushBlazingJudah/development
themes fixup
Diffstat (limited to 'static/js')
-rw-r--r--static/js/posts.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/static/js/posts.js b/static/js/posts.js
index 30f4893..29541c0 100644
--- a/static/js/posts.js
+++ b/static/js/posts.js
@@ -3,12 +3,13 @@ function startNewPost(){
el.style="display:none;";
el.setAttribute("state", "1");
document.getElementById("newpost").style = "";
+ document.getElementById("stopTablePost").style = "display:unset;";
sessionStorage.setItem("newpostState", true);
}
function stopNewPost(){
var el = document.getElementById("newpostbtn");
- el.style="display:block;";
+ el.style="display:block;margin-bottom:100px;";
el.setAttribute("state", "0");
document.getElementById("newpost").style = "display: none;";
sessionStorage.setItem("newpostState", false);