diff options
author | friendica <info@friendica.com> | 2012-04-25 01:36:22 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-25 01:36:22 -0700 |
commit | 37bc00094ec4ebbf771e0041cf285c066fad7bfe (patch) | |
tree | 4c0d4752fb7736d24ead8650e2f287e4262f8bb3 /view/theme | |
parent | 38e822320c57bc89f871293cb6fcb2be60a8ea6c (diff) | |
download | volse-hubzilla-37bc00094ec4ebbf771e0041cf285c066fad7bfe.tar.gz volse-hubzilla-37bc00094ec4ebbf771e0041cf285c066fad7bfe.tar.bz2 volse-hubzilla-37bc00094ec4ebbf771e0041cf285c066fad7bfe.zip |
this turns out to be harder than I thought
Diffstat (limited to 'view/theme')
-rwxr-xr-x | view/theme/duepuntozero/comment_item.tpl | 2 | ||||
-rw-r--r-- | view/theme/duepuntozero/theme.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/duepuntozero/comment_item.tpl b/view/theme/duepuntozero/comment_item.tpl index 79d5f6ab9..84b9597e8 100755 --- a/view/theme/duepuntozero/comment_item.tpl +++ b/view/theme/duepuntozero/comment_item.tpl @@ -38,7 +38,7 @@ onclick="insertFormatting('$comment','video', $id);"></a></li> </ul> <div class="comment-edit-bb-end"></div> - <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);cmtBbClose($id);" >$comment</textarea> + <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea> {{ if $qcomment }} <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" > <option value=""></option> diff --git a/view/theme/duepuntozero/theme.php b/view/theme/duepuntozero/theme.php index 968644525..2498852f9 100644 --- a/view/theme/duepuntozero/theme.php +++ b/view/theme/duepuntozero/theme.php @@ -37,7 +37,7 @@ function insertFormatting(comment,BBcode,id) { function cmtBbOpen(id) { $(".comment-edit-bb-" + id).show(); } -function cmtBbClose(id) { +function cmtBbClose(comment, id) { $(".comment-edit-bb-" + id).hide(); } $(document).ready(function() { |