wrap photo albums (albums and top level) in a div id=photo-album-contents

This commit is contained in:
friendica 2014-09-08 16:28:02 -07:00
parent 715417c0e3
commit b1254a71bc
2 changed files with 5 additions and 2 deletions

View File

@ -702,6 +702,9 @@ function photos_content(&$a) {
$tpl = get_markup_template('photo_album.tpl');
if(count($r)) {
$twist = 'rotright';
$o .= "<script> var page_query = '" . $_GET['q'] . "'; var extra_args = '" . extra_query_args() . "' ; </script>";
$o .= '<div id="photo-album-contents">';
foreach($r as $rr) {
if($twist == 'rotright')
@ -730,7 +733,6 @@ function photos_content(&$a) {
$rel=("photo");
// }
$o .= "<script> var page_query = '" . $_GET['q'] . "'; var extra_args = '" . extra_query_args() . "' ; </script>";
$tmp = replace_macros($tpl,array(
'$id' => $rr['id'],
@ -758,6 +760,7 @@ function photos_content(&$a) {
}
$o .= '<div id="page-end"></div>';
$o .= '</div>'; // photo-album-contents
$o .= '<div id="photo-album-end"></div>';
$o .= '<script>$(document).ready(function() { loadingPage = false;});</script>';
$o .= '<div id="page-spinner"></div>';

View File

@ -3,7 +3,7 @@
<a id="photo-top-upload-link" href="{{$upload.1}}">{{$upload.0}}</a>
{{/if}}
<div class="photos">
<div id="photo-album-contents" class="photos">
{{foreach $photos as $photo}}
{{include file="photo_top.tpl"}}
{{/foreach}}