aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authortommy tomson <thomas.bierey@gmx.de>2012-04-22 12:59:00 +0200
committertommy tomson <thomas.bierey@gmx.de>2012-04-22 12:59:00 +0200
commitc0a377e0de2a71197152281b61d5e8518dab1356 (patch)
treeeacd41c4a9058b26db163ae978befe4bf14fce29 /view
parent54817f058a4f62301525950d8cdf0189b4d964dc (diff)
downloadvolse-hubzilla-c0a377e0de2a71197152281b61d5e8518dab1356.tar.gz
volse-hubzilla-c0a377e0de2a71197152281b61d5e8518dab1356.tar.bz2
volse-hubzilla-c0a377e0de2a71197152281b61d5e8518dab1356.zip
diabook-themes: comment-bbcode-bugfix
Diffstat (limited to 'view')
-rw-r--r--view/theme/diabook/comment_item.tpl16
-rwxr-xr-xview/theme/diabook/theme.php2
2 files changed, 9 insertions, 9 deletions
diff --git a/view/theme/diabook/comment_item.tpl b/view/theme/diabook/comment_item.tpl
index 6843f958c..e10b86845 100644
--- a/view/theme/diabook/comment_item.tpl
+++ b/view/theme/diabook/comment_item.tpl
@@ -11,15 +11,15 @@
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
- <textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);tautogrow($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);tautogrow($id);cmtBbOpen($id);" >$comment</textarea>
<div class="comment-edit-bb-$id" style="display:none;">
- <a class="icon bb-image" style="cursor: pointer;" onclick="insertFormatting('img',$id);">img</a>
- <a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('url',$id);">url</a>
- <a class="icon bb-video" style="cursor: pointer;" onclick="insertFormatting('video',$id);">video</a>
- <a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('u',$id);">u</a>
- <a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('i',$id);">i</a>
- <a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('b',$id);">b</a>
- <a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('quote',$id);">quote</a>
+ <a class="icon bb-image" style="cursor: pointer;" onclick="insertFormatting('$comment','img',$id);">img</a>
+ <a class="icon bb-url" style="cursor: pointer;" onclick="insertFormatting('$comment','url',$id);">url</a>
+ <a class="icon bb-video" style="cursor: pointer;" onclick="insertFormatting('$comment','video',$id);">video</a>
+ <a class="icon underline" style="cursor: pointer;" onclick="insertFormatting('$comment','u',$id);">u</a>
+ <a class="icon italic" style="cursor: pointer;" onclick="insertFormatting('$comment','i',$id);">i</a>
+ <a class="icon bold" style="cursor: pointer;" onclick="insertFormatting('$comment','b',$id);">b</a>
+ <a class="icon quote" style="cursor: pointer;" onclick="insertFormatting('$comment','quote',$id);">quote</a>
</div>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php
index e8518a1c6..84d9f888e 100755
--- a/view/theme/diabook/theme.php
+++ b/view/theme/diabook/theme.php
@@ -480,7 +480,7 @@ function close_lastlikes(){
$a->page['htmlhead'] .= '
<script>
-function insertFormatting(BBcode,id) {
+function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {