diff options
author | Thomas Willingham <founder@kakste.com> | 2013-03-23 21:17:44 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-03-23 21:17:44 +0000 |
commit | 4b6bc77977eb64eb9f41126fdccec65008f37854 (patch) | |
tree | 9cb082da9171fe9f1a614398b231e8edeb0a8b56 /view/tpl/smarty3 | |
parent | 2dafe2952d59bac37a2eeb104c8c49132a327785 (diff) | |
download | volse-hubzilla-4b6bc77977eb64eb9f41126fdccec65008f37854.tar.gz volse-hubzilla-4b6bc77977eb64eb9f41126fdccec65008f37854.tar.bz2 volse-hubzilla-4b6bc77977eb64eb9f41126fdccec65008f37854.zip |
Implement prettyPhoto (somewhat).
Diffstat (limited to 'view/tpl/smarty3')
-rw-r--r-- | view/tpl/smarty3/photo_view.tpl | 8 |
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> |