aboutsummaryrefslogtreecommitdiffstats
path: root/view/comment_item.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-03-26 20:13:03 -0700
committerfriendica <info@friendica.com>2012-03-26 20:13:03 -0700
commit5275b5d04967c1c5f84f25ca6b7db4e1aef2bacf (patch)
tree3da9938a0ec84819d87888c93486464678e1ea3f /view/comment_item.tpl
parent4c585f759f5c2662b2d761adccdf2c6dafd31249 (diff)
downloadvolse-hubzilla-5275b5d04967c1c5f84f25ca6b7db4e1aef2bacf.tar.gz
volse-hubzilla-5275b5d04967c1c5f84f25ca6b7db4e1aef2bacf.tar.bz2
volse-hubzilla-5275b5d04967c1c5f84f25ca6b7db4e1aef2bacf.zip
qcomment enhancements
Diffstat (limited to 'view/comment_item.tpl')
-rwxr-xr-xview/comment_item.tpl8
1 files changed, 5 insertions, 3 deletions
diff --git a/view/comment_item.tpl b/view/comment_item.tpl
index 3503c3843..a1d4e1043 100755
--- a/view/comment_item.tpl
+++ b/view/comment_item.tpl
@@ -13,10 +13,12 @@
<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>
{{ if $qcomment }}
- {{ for $qcomment as $qc }}
- <span class="fakelink qcomment" onclick="commentInsert(this,$id); return false;" >$qc</span>
- &nbsp;
+ <select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
+ <option value=""></option>
+ {{ for $qcomment as $qc }}
+ <option value="$qc">$qc</option>
{{ endfor }}
+ </select>
{{ endif }}
<div class="comment-edit-text-end"></div>