source: branches/2.4/themes/default/template/picture_content.tpl @ 16523

Last change on this file since 16523 was 16523, checked in by flop25, 12 years ago

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

  • Property svn:eol-style set to LF
File size: 1.5 KB
RevLine 
[16523]1{if !$current.selected_derivative->is_cached()}
[16506]2{combine_script id='jquery.ajaxmanager' path='themes/default/js/plugins/jquery.ajaxmanager.js' load='footer'}
3{combine_script id='thumbnails.loader' path='themes/default/js/thumbnails.loader.js' require='jquery.ajaxmanager' load='footer'}
[16523]4{/if}
[12797]5
[16506]6<img {if $current.selected_derivative->is_cached()}src="{$current.selected_derivative->get_url()}" {$current.selected_derivative->get_size_htm()} {else}src="{$ROOT_URL}{$themeconf.img_dir}/ajax-loader-big.gif" data-src="{$current.selected_derivative->get_url()}"{/if} alt="{$ALT_IMG}" id="theMainImage" usemap="#map{$current.selected_derivative->get_type()}" title="{if isset($COMMENT_IMG)}{$COMMENT_IMG|@strip_tags:false|@replace:'"':' '}{else}{$current.TITLE|@replace:'"':' '} - {$ALT_IMG}{/if}">
7
[12880]8{foreach from=$current.unique_derivatives item=derivative key=derivative_type}{strip}
[14180]9<map name="map{$derivative->get_type()}">
[12880]10{assign var='size' value=$derivative->get_size()}
11{if isset($previous)}
12<area shape=rect coords="0,0,{$size[0]/4|@intval},{$size[1]}" href="{$previous.U_IMG}" title="{'Previous'|@translate} : {$previous.TITLE}" alt="{$previous.TITLE}">
13{/if}
14<area shape=rect coords="{$size[0]/4|@intval},0,{$size[0]/1.34|@intval},{$size[1]/4|@intval}" href="{$U_UP}" title="{'Thumbnails'|@translate}" alt="{'Thumbnails'|@translate}">
15{if isset($next)}
16<area shape=rect coords="{$size[0]/1.33|@intval},0,{$size[0]},{$size[1]}" href="{$next.U_IMG}" title="{'Next'|@translate} : {$next.TITLE}" alt="{$next.TITLE}">
17{/if}
18</map>
[14180]19{/strip}{/foreach}
Note: See TracBrowser for help on using the repository browser.