diff options
author | zotlabs <mike@macgirvin.com> | 2017-08-30 18:55:56 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-08-30 18:55:56 -0700 |
commit | f436ec6f2176c3b367cee2d40b78fae267ee779a (patch) | |
tree | 8022c9dfde5435f0634b66b97aa482668e4bb88b /view | |
parent | be097bf415c898c470e85e89cd059e7121517d15 (diff) | |
download | volse-hubzilla-f436ec6f2176c3b367cee2d40b78fae267ee779a.tar.gz volse-hubzilla-f436ec6f2176c3b367cee2d40b78fae267ee779a.tar.bz2 volse-hubzilla-f436ec6f2176c3b367cee2d40b78fae267ee779a.zip |
some issues with mod_display on very first anonymous page visit (prior to any browser cookies being set)
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/conv_frame.tpl | 1 | ||||
-rwxr-xr-x | view/tpl/threaded_conversation.tpl | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/view/tpl/conv_frame.tpl b/view/tpl/conv_frame.tpl index aa7b55e9b..1f0e00db4 100755 --- a/view/tpl/conv_frame.tpl +++ b/view/tpl/conv_frame.tpl @@ -3,3 +3,4 @@ <div id="conversation-end"></div> <div id="page-spinner"></div> + diff --git a/view/tpl/threaded_conversation.tpl b/view/tpl/threaded_conversation.tpl index ea5c3c281..5bc7d8386 100755 --- a/view/tpl/threaded_conversation.tpl +++ b/view/tpl/threaded_conversation.tpl @@ -1,8 +1,9 @@ +<div id="threads-begin"></div> {{if $photo_item}} {{$photo_item}} {{/if}} {{foreach $threads as $thread_item}} {{include file="{{$thread_item.template}}" item=$thread_item}} {{/foreach}} - +<div id="threads-end"></div> <div id="conversation-end"></div> |