Suppression des fichiers de travail

This commit is contained in:
LC 2023-10-07 16:17:49 +02:00
parent 99b7b7f645
commit 77ecf9638e
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
<?php
echo '</script>';
$largeur_site = $this->getData(['theme', 'site', 'width' ]);
echo '<script>';
?>
$(function () {
// @Lionel 2019
var taille = '<?=$largeur_site?>';
switch(taille)
{
case '75vw':
$('a.galleryPicture').css('height', '165px');//view/index
$('a.galleryGalleryPicture').css('height', '110px');//view/gallery
$('div.galleryGalleryName').css('font-size', '0.8em');//view/gallery
break;
case '85vw':
$('a.galleryPicture').css('height', '200px');
$('a.galleryGalleryPicture').css('height', '135px');
$('div.galleryGalleryName').css('font-size', '0.85em');
break;
case '95vw':
$('a.galleryPicture').css('height', '235px');
$('a.galleryGalleryPicture').css('height', '160px');
$('div.galleryGalleryName').css('font-size', '0.9em');
break;
default:
$('a.galleryPicture').css('height', '250px');
$('a.galleryGalleryPicture').css('height', '185px');
$('div.galleryGalleryName').css('font-size', '1em');
break;
}//*/
});