diff options
author | Simon <simon@kisikew.org> | 2012-03-31 00:57:26 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-31 00:57:26 -0700 |
commit | ee95c12a24e74662ed508bebfc6291bcfeed6dc3 (patch) | |
tree | 2cb74f00bcc877896bb77a9872b6cfa354f64522 /view/theme/dispy-dark/comment_item.tpl | |
parent | 8c928e67ba9f122343f53400cf0f4dae8104ffd7 (diff) | |
parent | b88a452c6b90b8ee1aafe4f2a4f1bd905f767893 (diff) | |
download | volse-hubzilla-ee95c12a24e74662ed508bebfc6291bcfeed6dc3.tar.gz volse-hubzilla-ee95c12a24e74662ed508bebfc6291bcfeed6dc3.tar.bz2 volse-hubzilla-ee95c12a24e74662ed508bebfc6291bcfeed6dc3.zip |
Merge pull request #189 from simonlnu/master
most notable one is fixing qcomment
Diffstat (limited to 'view/theme/dispy-dark/comment_item.tpl')
-rw-r--r-- | view/theme/dispy-dark/comment_item.tpl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/view/theme/dispy-dark/comment_item.tpl b/view/theme/dispy-dark/comment_item.tpl index 85176732b..adf2772af 100644 --- a/view/theme/dispy-dark/comment_item.tpl +++ b/view/theme/dispy-dark/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> |