diff options
author | friendica <redmatrix@redmatrix.me> | 2015-04-06 22:36:46 -0700 |
---|---|---|
committer | friendica <redmatrix@redmatrix.me> | 2015-04-06 22:36:46 -0700 |
commit | 5bc7c0e7988765998d44f005a9e7121848888660 (patch) | |
tree | 6e918268bda874e13112b60e70e78192fccb9fd5 /view | |
parent | 3c05af6553ae1bef3a59c5f58aa7551021e34363 (diff) | |
download | volse-hubzilla-5bc7c0e7988765998d44f005a9e7121848888660.tar.gz volse-hubzilla-5bc7c0e7988765998d44f005a9e7121848888660.tar.bz2 volse-hubzilla-5bc7c0e7988765998d44f005a9e7121848888660.zip |
add endless scroll to viewconnections module
Diffstat (limited to 'view')
-rwxr-xr-x | view/tpl/viewcontact_template.tpl | 7 | ||||
-rw-r--r-- | view/tpl/viewcontactsajax.tpl | 3 |
2 files changed, 9 insertions, 1 deletions
diff --git a/view/tpl/viewcontact_template.tpl b/view/tpl/viewcontact_template.tpl index cde24525c..83cd80959 100755 --- a/view/tpl/viewcontact_template.tpl +++ b/view/tpl/viewcontact_template.tpl @@ -1,10 +1,15 @@ <div class="generic-content-wrapper generic-content-wrapper-styled"> <h3>{{$title}}</h3> + +<div id="connections-wrapper"> {{foreach $contacts as $contact}} {{include file="contact_template.tpl"}} {{/foreach}} - +<div id="page-end"></div> +</div> <div id="view-contact-end"></div> {{$paginate}} </div> +<script>$(document).ready(function() { loadingPage = false;});</script> +<div id="page-spinner"></div> diff --git a/view/tpl/viewcontactsajax.tpl b/view/tpl/viewcontactsajax.tpl new file mode 100644 index 000000000..68be228be --- /dev/null +++ b/view/tpl/viewcontactsajax.tpl @@ -0,0 +1,3 @@ +{{foreach $contacts as $contact}} +{{include file="contact_template.tpl"}} +{{/foreach}} |