X-Git-Url: https://scm.cri.minesparis.psl.eu/git/Portfolio.git/blobdiff_plain/7e38e85702295952deaaf04fda5bb44dd2550524..d2c54b79af112bf32ae357779b1dca0d148e7eb6:/skins/photo_layout_macros.pt diff --git a/skins/photo_layout_macros.pt b/skins/photo_layout_macros.pt index f6003ba..1a77be0 100644 --- a/skins/photo_layout_macros.pt +++ b/skins/photo_layout_macros.pt @@ -13,7 +13,7 @@ i18n:domain="portfolio"> <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div> <div id="lightbox" tal:attributes="class python:'lightbox photo-drop-target' if dropable else 'lightbox'"> - <span tal:repeat="info infos" tal:omit-tag=""> + <span metal:define-macro="thumbnails" tal:repeat="info infos" tal:omit-tag=""> <span tal:define="size info/thumbSize; margin_top python:(slide_size - size['height']) / 2; margin_left python:(slide_size - size['width']) / 2; @@ -104,14 +104,16 @@ <br clear="all"/> <div metal:use-macro="here/batch_macros/macros/navigation">batch navigation</div> <script type="text/javascript" tal:condition="not:dropable"> - new Lightbox(document.getElementById('lightbox')); + new Lightbox(document.getElementById('lightbox'), + document.getElementById('lightbox_toolbar')); </script> <script type="text/javascript" tal:condition="dropable" tal:content="structure python:''' (function(){ var lb = document.getElementById('lightbox'); - new Lightbox(lb); + new Lightbox(lb, + document.getElementById('lightbox_toolbar')); var uploadUrl = '%(putUrl)s'; var options = {'slideSize' : %(slideSize)d, 'thumbnailSize' : %(thumbnailSize)d};