diff options
author | Mario <mario@mariovavti.com> | 2021-02-15 10:15:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-15 10:15:57 +0000 |
commit | d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d (patch) | |
tree | e16495d2f64d2c5d5e01394178d810a060895643 /view | |
parent | ed993920015cfae7f0e939b1733ab125c85e1dda (diff) | |
download | volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.tar.gz volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.tar.bz2 volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.zip |
fix preview generating duplicate IDs
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/conv_item.tpl | 2 | ||||
-rw-r--r-- | view/tpl/threaded_conversation.tpl | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index b021509d3..361392796 100644 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -141,7 +141,7 @@ </a> <a class="dropdown-item" href="#" title="{{$item.conlabels.1}}" onclick="dolike({{$item.id}},'disagree'); return false;"> <i class="item-act-list fa fa-times{{if $item.my_responses.disagree}} ivoted{{/if}}" ></i> {{$item.conlabels.1}} - </a> + </a> <a class="dropdown-item" href="#" title="{{$item.conlabels.2}}" onclick="dolike({{$item.id}},'abstain'); return false;"> <i class="item-act-list fa fa-question{{if $item.my_responses.abstain}} ivoted{{/if}}" ></i> {{$item.conlabels.2}} </a> diff --git a/view/tpl/threaded_conversation.tpl b/view/tpl/threaded_conversation.tpl index 5bc7d8386..6e773088e 100644 --- a/view/tpl/threaded_conversation.tpl +++ b/view/tpl/threaded_conversation.tpl @@ -1,9 +1,13 @@ +{{if !$preview }} <div id="threads-begin"></div> +{{/if}} {{if $photo_item}} {{$photo_item}} {{/if}} {{foreach $threads as $thread_item}} {{include file="{{$thread_item.template}}" item=$thread_item}} {{/foreach}} +{{if !$preview }} <div id="threads-end"></div> <div id="conversation-end"></div> +{{/if}} |