aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/smarty3/photo_view.tpl
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-03-23 16:17:55 -0700
committerfriendica <info@friendica.com>2013-03-23 16:17:55 -0700
commit0c5d7cbfaea2a39777f39e17303d4306caba3fa6 (patch)
tree07cec020f82c39ff7bad35d4330e549cefd132e7 /view/tpl/smarty3/photo_view.tpl
parentd9b51c6db54b21a7d0ded256acc4cf45a22b6f5f (diff)
parent43af9b14295006ac7004406000690bd39b4de35e (diff)
downloadvolse-hubzilla-0c5d7cbfaea2a39777f39e17303d4306caba3fa6.tar.gz
volse-hubzilla-0c5d7cbfaea2a39777f39e17303d4306caba3fa6.tar.bz2
volse-hubzilla-0c5d7cbfaea2a39777f39e17303d4306caba3fa6.zip
Merge pull request #42 from beardy-unixer/master
Use prettyPhoto for photo albums
Diffstat (limited to 'view/tpl/smarty3/photo_view.tpl')
-rw-r--r--view/tpl/smarty3/photo_view.tpl8
1 files changed, 7 insertions, 1 deletions
diff --git a/view/tpl/smarty3/photo_view.tpl b/view/tpl/smarty3/photo_view.tpl
index 94f71bdd8..fe090409a 100644
--- a/view/tpl/smarty3/photo_view.tpl
+++ b/view/tpl/smarty3/photo_view.tpl
@@ -3,6 +3,12 @@
* DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
*
*}}
+<script type="text/javascript" charset="utf-8">
+ $(document).ready(function(){
+ $("a[rel^='prettyPhoto']").prettyPhoto();
+ });
+</script>
+
<div id="live-display"></div>
<h3><a href="{{$album.0}}">{{$album.1}}</a></h3>
@@ -16,7 +22,7 @@
</div>
{{if $prevlink}}<div id="photo-prev-link"><a href="{{$prevlink.0}}">{{$prevlink.1}}</a></div>{{/if}}
-<div id="photo-photo"><a href="{{$photo.href}}" title="{{$photo.title}}"><img src="{{$photo.src}}" /></a></div>
+<div id="photo-photo"><a href="{{$photo.href}}" title="{{$photo.title}}" rel="prettyPhoto"><img src="{{$photo.src}}" /></a></div>
{{if $nextlink}}<div id="photo-next-link"><a href="{{$nextlink.0}}">{{$nextlink.1}}</a></div>{{/if}}
<div id="photo-photo-end"></div>
<div id="photo-caption">{{$desc}}</div>