source: extensions/floPure/Pure_default/local_head.tpl @ 11529

Last change on this file since 11529 was 10486, checked in by flop25, 13 years ago

small fix of js

File size: 501 bytes
Line 
1{footer_script require='jquery'}
2{literal}
3var max_dim_width = 0;
4var max_dim_height = 0;
5$(document).ready(function() {
6  $(".thumbnails img").each(function () {
7    if (jQuery(this).height() > max_dim_height)
8      max_dim_height = jQuery(this).height() + 10;
9    if (jQuery(this).width() > max_dim_width)
10      max_dim_width = jQuery(this).width() + 10;
11
12    jQuery(".wrap2")
13      .css('width', max_dim_width+'px')
14      .css('height', max_dim_height+'px');
15  });
16});
17{/literal}
18{/footer_script}
Note: See TracBrowser for help on using the repository browser.