source: extensions/Back2Front/template/picture_content.tpl @ 10821

Last change on this file since 10821 was 10821, checked in by mistic100, 13 years ago

use a private album instead a privacy level

File size: 1.6 KB
Line 
1{combine_css path=$B2F_PATH|@cat:"template/style.css"}
2
3{footer_script require="jquery"}
4jQuery(document).ready(function () {ldelim}
5  jQuery('.reverse').click(function() {ldelim}
6    if (jQuery(this).attr('rel') == 'front') {ldelim}
7      /* picture attributes */
8      jQuery('#theImage img:first-child').attr({ldelim}
9        src: '{$VERSO_URL}',
10        style: 'width:;height:;',
11      });
12     
13      /* hd link atributes */
14      {if isset($VERSO_HD)}
15      jQuery('#theImage a:first-child').attr({ldelim}
16        href: "javascript:phpWGOpenWindow('{$VERSO_HD}','{$high.UUID}','scrollbars=yes,toolbar=no,status=no,resizable=yes')"
17      });
18      {/if}
19     
20      /* B2F link content */
21      jQuery(this).html('<img src="{$B2F_PATH}template/rotate_2.png"/> {'See front'|@translate}');
22      jQuery(this).attr('rel', 'back');
23     
24    } else if (jQuery(this).attr('rel') == 'back') {ldelim}
25      jQuery('#theImage img:first-child').attr({ldelim}
26        src: '{$SRC_IMG}',
27        style: 'width:{$WIDTH_IMG}px;height:{$HEIGHT_IMG}px;',
28      });
29     
30      {if isset($VERSO_HD)}
31      jQuery('#theImage a:first-child').attr({ldelim}
32        href: "javascript:phpWGOpenWindow('{$high.U_HIGH}','{$high.UUID}','scrollbars=yes,toolbar=no,status=no,resizable=yes')')"
33      });
34      {/if}
35     
36      jQuery(this).html('<img src="{$B2F_PATH}template/rotate_1.png"/> {'See back'|@translate}');
37      jQuery(this).attr('rel', 'front');
38    }
39  });
40});
41{/footer_script}
42
43<a class="reverse" rel="front" href="#">
44  <img src="{$B2F_PATH}template/rotate_1.png"/>
45  {'See back'|@translate}
46</a>
Note: See TracBrowser for help on using the repository browser.