From 6840b088c90273f490a397a3c7ff2d67a58549a0 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 29 Aug 2017 12:40:33 +0300 Subject: www: hide newmessage form --- juick-www/src/main/static/scripts.js | 4 +--- juick-www/src/main/static/style.css | 4 +--- .../main/webapp/WEB-INF/views/partial/newmessage.html | 16 +++++++--------- 3 files changed, 9 insertions(+), 15 deletions(-) (limited to 'juick-www/src') diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js index 0254c5f1..984f0e5c 100644 --- a/juick-www/src/main/static/scripts.js +++ b/juick-www/src/main/static/scripts.js @@ -271,7 +271,7 @@ function postformListener(formEl, ev) { function unfoldPostForm() { if (window.location.pathname === '/' && window.location.hash === '#post') { - document.querySelector('#newmessage>div').style.display = 'block'; + document.querySelector('#newmessage').style.display = 'block'; var ta = document.querySelector('#newmessage textarea'); ta.style.minHeight = '70px'; ta.focus(); @@ -775,8 +775,6 @@ ready(function () { form.addEventListener('submit', newMessage); newMessageBlock.querySelector('textarea').addEventListener('click', function (e) { var parent = e.target.parentNode; - parent.querySelector('div').style.display = 'block'; - e.target.style.minHeight = '70px'; e.target.addEventListener('keypress', function (e) { postformListener(e.target, e); }); diff --git a/juick-www/src/main/static/style.css b/juick-www/src/main/static/style.css index c596da8a..b24ee23f 100644 --- a/juick-www/src/main/static/style.css +++ b/juick-www/src/main/static/style.css @@ -163,6 +163,7 @@ body > header p { background: #E5E5E0; margin-bottom: 20px; padding: 15px; + display: none; } #newmessage textarea { border: 1px solid #CCC; @@ -177,9 +178,6 @@ body > header p { margin: 5px 0; padding: 2px 4px; } -#newmessage > div { - display: none; -} #newmessage .img { width: 500px; } diff --git a/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html b/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html index 1333351b..e21002b8 100644 --- a/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html +++ b/juick-www/src/main/webapp/WEB-INF/views/partial/newmessage.html @@ -1,10 +1,8 @@ -
-
- -
- {{ i18n("messages","postForm.or") }} {{ i18n("messages","postForm.upload") }}
-
- -
-
+ + +
+ {{ i18n("messages","postForm.or") }} {{ i18n("messages","postForm.upload") }}
+
+ +
\ No newline at end of file -- cgit v1.2.3