diff options
author | flop25 <flop25@piwigo.org> | 2012-07-09 08:03:44 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2012-07-09 08:03:44 +0000 |
commit | 14b5e43107a80b2e5ac5c3b8af56a0cbd0a9328a (patch) | |
tree | 18c7209a6ecd5bb3cbb232a0af26b9e4986ec861 /themes/default/template/thumbnails.tpl | |
parent | d3f5ed2c2d4f4521f3ac0d4dd383eff9047bf3cb (diff) |
merge r16522 from branch 2.4 to trunk
only load the js for the ajax loading, if one picture needs to be generated
bug:2684
git-svn-id: http://piwigo.org/svn/branches/2.4@16523 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/thumbnails.tpl | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/themes/default/template/thumbnails.tpl b/themes/default/template/thumbnails.tpl index de7e88ce1..9121aed60 100644 --- a/themes/default/template/thumbnails.tpl +++ b/themes/default/template/thumbnails.tpl @@ -1,6 +1,4 @@ {if !empty($thumbnails)}{strip} -{combine_script id='jquery.ajaxmanager' path='themes/default/js/plugins/jquery.ajaxmanager.js' load='footer'} -{combine_script id='thumbnails.loader' path='themes/default/js/thumbnails.loader.js' require='jquery.ajaxmanager' load='footer'} {*define_derivative name='derivative_params' width=160 height=90 crop=true*} {html_style} {*Set some sizes according to maximum thumbnail width and height*} @@ -25,7 +23,11 @@ {/html_style} {foreach from=$thumbnails item=thumbnail} {assign var=derivative value=$pwg->derivative($derivative_params, $thumbnail.src_image)} - <li> +{if !$derivative->is_cached()} +{combine_script id='jquery.ajaxmanager' path='themes/default/js/plugins/jquery.ajaxmanager.js' load='footer'} +{combine_script id='thumbnails.loader' path='themes/default/js/thumbnails.loader.js' require='jquery.ajaxmanager' load='footer'} +{/if} +<li> <span class="wrap1"> <span class="wrap2"> <a href="{$thumbnail.URL}"> |