aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/comment_item.tpl
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-03-31 03:56:06 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-03-31 03:56:06 -0400
commitb88a452c6b90b8ee1aafe4f2a4f1bd905f767893 (patch)
tree2cb74f00bcc877896bb77a9872b6cfa354f64522 /view/theme/dispy/comment_item.tpl
parente940acf8c68ac72a2f55590306977e00f1523f2a (diff)
downloadvolse-hubzilla-b88a452c6b90b8ee1aafe4f2a4f1bd905f767893.tar.gz
volse-hubzilla-b88a452c6b90b8ee1aafe4f2a4f1bd905f767893.tar.bz2
volse-hubzilla-b88a452c6b90b8ee1aafe4f2a4f1bd905f767893.zip
theme fixes; fix qcomment (finally)
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.tpl13
1 files changed, 7 insertions, 6 deletions
diff --git a/view/theme/dispy/comment_item.tpl b/view/theme/dispy/comment_item.tpl
index 85176732b..adf2772af 100644
--- a/view/theme/dispy/comment_item.tpl
+++ b/view/theme/dispy/comment_item.tpl
@@ -12,14 +12,15 @@
</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>
-
{{ if $qcomment }}
- <ul class="qcomment-wrapper">
- {{ for $qcomment as $qc }}
- <li class="fakelink qcomment"
- onclick="commentInsert(this,$id); return false;">$qc</li>
+ <div class="qcomment-wrapper">
+ <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 }}
- </ul>
+ </select>
+ </div>
{{ endif }}
<div class="comment-edit-text-end"></div>