bring back comment edit buttons

This commit is contained in:
friendica 2012-09-10 18:06:18 -07:00
parent 23770896c1
commit fa65db9aa1
2 changed files with 14 additions and 5 deletions

View File

@ -1765,7 +1765,7 @@ input#dfrn-url {
.comment-edit-text-empty { .comment-edit-text-empty {
color: gray; color: gray;
height: 5em; height: 2em;
width: 175px; width: 175px;
overflow: auto; overflow: auto;
margin-bottom: 10px; margin-bottom: 10px;

View File

@ -37,13 +37,22 @@ function insertFormatting(comment,BBcode,id) {
return true; return true;
} }
function cmtBbOpen(id) { function cmtBbOpen(comment, id) {
$(".comment-edit-bb-" + id).show(); if($(comment).hasClass('comment-edit-text-full')) {
$(".comment-edit-bb-" + id).show();
return true;
}
return false;
} }
function cmtBbClose(id) { function cmtBbClose(comment, id) {
$(".comment-edit-bb-" + id).hide(); if($(comment).hasClass('comment-edit-text-empty')) {
$(".comment-edit-bb-" + id).hide();
return true;
}
return false;
} }
function hidecal() { function hidecal() {
if(editor) return; if(editor) return;
$('.fc').hide(); $('.fc').hide();