diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-31 03:56:06 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-31 03:56:06 -0400 |
commit | b88a452c6b90b8ee1aafe4f2a4f1bd905f767893 (patch) | |
tree | 2cb74f00bcc877896bb77a9872b6cfa354f64522 /view/theme/dispy/comment_item.tpl | |
parent | e940acf8c68ac72a2f55590306977e00f1523f2a (diff) | |
download | volse-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.tpl | 13 |
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> |