bug 3149: admin image preview (colorbox) does not work for small originals

git-svn-id: http://piwigo.org/svn/trunk@30358 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
rvelices
2014-11-03 20:50:50 +00:00
parent dca7f6cfa7
commit a8f4ebc06e
3 changed files with 7 additions and 3 deletions
@@ -95,7 +95,7 @@ jQuery(document).ready(function() {
$('ul.thumbnails').enableShiftClick();
});
jQuery("a.preview-box").colorbox();
jQuery("a.preview-box").colorbox( {photo: true} );
jQuery('.thumbnails img').tipTip({
'delay' : 0,
@@ -29,7 +29,9 @@ jQuery(function(){ {* <!-- onLoad needed to wait localization loads --> *}
});
{* <!-- THUMBNAILS --> *}
jQuery("a.preview-box").colorbox();
jQuery("a.preview-box").colorbox( {
photo: true
});
}());
{/footer_script}
@@ -38,7 +38,9 @@ jQuery(function(){ {* <!-- onLoad needed to wait localization loads --> *}
});
{* <!-- THUMBNAILS --> *}
jQuery("a.preview-box").colorbox();
jQuery("a.preview-box").colorbox({
photo: true
});
}());
{/footer_script}