Bring back BB-Code in comments

pull/504/head
Christian Vogeley 2012-10-02 21:29:00 +02:00
rodzic d6226a5337
commit 44acbb25e4
1 zmienionych plików z 12 dodań i 3 usunięć

Wyświetl plik

@ -42,13 +42,22 @@ function insertFormatting(comment,BBcode,id) {
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
function cmtBbOpen(comment, id) {
if($(comment).hasClass('comment-edit-text-full')) {
$(".comment-edit-bb-" + id).show();
return true;
}
return false;
}
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;
}
$(document).ready(function() {
$('.group-edit-icon').hover(