diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-29 20:36:39 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-29 20:36:39 +0000 |
commit | 8741bb20e8314bd324722d81c83802a5e4d02385 (patch) | |
tree | 0509752a99361e30c19c20bc054f3d7416884569 /view/tpl/photo_album.tpl | |
parent | fbb4dc69c6789a04f8464afba4ea625feb880731 (diff) | |
download | volse-hubzilla-8741bb20e8314bd324722d81c83802a5e4d02385.tar.gz volse-hubzilla-8741bb20e8314bd324722d81c83802a5e4d02385.tar.bz2 volse-hubzilla-8741bb20e8314bd324722d81c83802a5e4d02385.zip |
Make prettyPhoto a feature, add slideshow for albums.
Diffstat (limited to 'view/tpl/photo_album.tpl')
-rw-r--r-- | view/tpl/photo_album.tpl | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/view/tpl/photo_album.tpl b/view/tpl/photo_album.tpl index cc3dcfb9c..53392e709 100644 --- a/view/tpl/photo_album.tpl +++ b/view/tpl/photo_album.tpl @@ -1,5 +1,11 @@ +<script type="text/javascript" charset="utf-8"> + $(document).ready(function(){ + $("a[rel^='prettyPhoto']").prettyPhoto(); + }); +</script> + <div class="photo-album-image-wrapper" id="photo-album-image-wrapper-$id"> - <a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle"> + <a href="$photolink" class="photo-album-photo-link" id="photo-album-photo-link-$id" title="$phototitle" rel="$rel"> <img src="$imgsrc" alt="$imgalt" title="$phototitle" class="photo-album-photo lframe resize$twist" id="photo-album-photo-$id" /> <p class='caption'>$desc</p> </a> |