From 07733890a241aba4675b8b9fe90538d856217b18 Mon Sep 17 00:00:00 2001 From: myleneb Date: Tue, 1 Sep 2015 07:56:17 +0200 Subject: [PATCH] remove post area prompt when posting new msg --- js/theme_option.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/theme_option.js b/js/theme_option.js index 3ef3731..2bcdfc0 100644 --- a/js/theme_option.js +++ b/js/theme_option.js @@ -113,7 +113,10 @@ function reOrganizeTemplates() { // for nin's templating if(!$('.mini-profile .post-area').hasClass('display')) {$('.mini-profile .post-area').addClass('display');} else {$('.mini-profile .post-area').removeClass('display');} return false; + }); + $('.mini-profile .post-area .post-submit').bind( 'click', function() { + $('.mini-profile .post-area').removeClass('display'); }); }