diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-04-22 01:17:13 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-04-22 01:17:13 -0400 |
commit | f99d9e4d7f89ed0edb03ff07bad7c087154fc6ad (patch) | |
tree | 880edf811fbdd2c58ddc4748d95e9244c202fd9e /view/theme/diabook/comment_item.tpl | |
parent | 2d129e7455b6b083809a03df97f299db732d79f6 (diff) | |
parent | d340b80094cbaf33f3989422240be929741b0ff8 (diff) | |
download | volse-hubzilla-f99d9e4d7f89ed0edb03ff07bad7c087154fc6ad.tar.gz volse-hubzilla-f99d9e4d7f89ed0edb03ff07bad7c087154fc6ad.tar.bz2 volse-hubzilla-f99d9e4d7f89ed0edb03ff07bad7c087154fc6ad.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
rev update
diabook-themes: deleted obsolete diabook-folder & minor bug-fixes
* master:
Diffstat (limited to 'view/theme/diabook/comment_item.tpl')
-rw-r--r-- | view/theme/diabook/comment_item.tpl | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/view/theme/diabook/comment_item.tpl b/view/theme/diabook/comment_item.tpl index ee4dfba45..6843f958c 100644 --- a/view/theme/diabook/comment_item.tpl +++ b/view/theme/diabook/comment_item.tpl @@ -11,14 +11,16 @@ <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)" onBlur="commentClose(this,$id);" >$comment</textarea> - <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> + <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> + <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> + </div> {{ if $qcomment }} <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" > <option value=""></option> |