remove post area prompt when posting new msg

This commit is contained in:
myleneb 2015-09-01 07:56:17 +02:00
parent 9386ed2e69
commit 07733890a2

View File

@ -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');
});
}