mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-07-05 01:12:29 +02:00
db7e67ae20
Use ajax loader for thumbnails in mobile theme. Use standard square parameters for mobile theme. Change square parameters to 120px. git-svn-id: http://piwigo.org/svn/trunk@13472 68402e56-0260-453c-a942-63ccdbb3a9ee
17 lines
572 B
JavaScript
17 lines
572 B
JavaScript
(function(window, $, PhotoSwipe){
|
|
$(document).ready(function(){
|
|
var options = {
|
|
jQueryMobile: true,
|
|
imageScaleMethod: "fitNoUpscale"
|
|
};
|
|
$(".thumbnails a").photoSwipe(options);
|
|
$(document).bind('orientationchange', set_thumbnails_width);
|
|
set_thumbnails_width();
|
|
});
|
|
}(window, window.jQuery, window.Code.PhotoSwipe));
|
|
|
|
function set_thumbnails_width() {
|
|
nb_thumbs = Math.max(3, Math.ceil($('.thumbnails').width() / 130));
|
|
width = Math.floor(1000000 / nb_thumbs) / 10000;
|
|
$('.thumbnails li').css('width', width+'%');
|
|
} |