aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/comment_item.tpl
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-04-20 05:56:54 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-04-20 05:56:54 -0400
commiteb9ddb884a9fa2c9a1cc351830e953cf477a3a40 (patch)
treec8fb7b98bbe645cc2e7f118be92c94a616279964 /view/theme/dispy/comment_item.tpl
parent1c88a7ef5ded0a5e58a554482d2c1fbeb78c2ef0 (diff)
downloadvolse-hubzilla-eb9ddb884a9fa2c9a1cc351830e953cf477a3a40.tar.gz
volse-hubzilla-eb9ddb884a9fa2c9a1cc351830e953cf477a3a40.tar.bz2
volse-hubzilla-eb9ddb884a9fa2c9a1cc351830e953cf477a3a40.zip
optimise imgs; add some comment editing knobs
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'view/theme/dispy/comment_item.tpl')
-rw-r--r--view/theme/dispy/comment_item.tpl43
1 files changed, 39 insertions, 4 deletions
diff --git a/view/theme/dispy/comment_item.tpl b/view/theme/dispy/comment_item.tpl
index adf2772af..371477c5b 100644
--- a/view/theme/dispy/comment_item.tpl
+++ b/view/theme/dispy/comment_item.tpl
@@ -11,14 +11,49 @@
<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);" onBlur="commentClose(this,$id);" >$comment</textarea>
+ <ul class="comment-edit-bb-$id">
+ <li><a class="editicon boldbb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','b', $id);"></a></li>
+ <li><a class="editicon italicbb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','i', $id);"></a></li>
+ <li><a class="editicon underlinebb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','u', $id);"></a></li>
+ <li><a class="editicon quotebb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','quote', $id);"></a></li>
+ <li><a class="editicon codebb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','code', $id);"></a></li>
+ <li><a class="editicon imagebb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','img', $id);"></a></li>
+ <li><a class="editicon urlbb shadow"
+ style="cursor: pointer;"
+ onclick="insertFormatting('$comment','url', $id);"></a></li>
+ <li><a class="editicon videobb shadow"
+ style="cursor: pointer;"
+ 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);tautogrow($id);cmtBbOpen($id);"
+ onblur="commentClose(this,$id);cmtBbClose($id);"
+ placeholder="Comment">$comment</textarea>
{{ if $qcomment }}
<div class="qcomment-wrapper">
- <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);">
+ <select id="qcomment-select-$id"
+ name="qcomment-$id"
+ class="qcomment"
+ onchange="qCommentInsert(this,$id);">
<option value=""></option>
- {{ for $qcomment as $qc }}
+ {{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
- {{ endfor }}
+ {{ endfor }}
</select>
</div>
{{ endif }}