Как сделать что бы кнопка и форма были в видимом положении?
comments.js
/**
* Hides/shows comment form
*
* @param idComment
* @param bNoFocus
* @param mode
* @returns {boolean} - false - форма скрыта, true - форма видима
*/
this.toggleCommentForm = function (idComment, bNoFocus, mode) {
var replyForm = this.getReplyForm(),
textarea = replyForm.find('textarea'),
textareaId = textarea.attr('id');
if (!replyForm.length) {
return false;
}
if (!mode) {
mode = 'reply';
}
$('#comment_preview_' + this.iCurrentShowFormComment).remove();
if (this.iCurrentShowFormComment == idComment && replyForm.is(':visible')) {
this.formCommentHide(replyForm, idComment);
return false;
} else {
this.formCommentShow(replyForm, idComment, bNoFocus, mode);
return true;
}
};
this.reply = function(idComment) {
this.toggleCommentForm(idComment, false, 'reply');
};
Копался, не получилось! если поставить сюда this.toggleCommentForm = function (idComment, bNoFocus, mode, true)
ошибка
Написано, * @returns {boolean} — false — форма скрыта, true — форма видима, но я не допер как
0 комментариев