maj de vérification

This commit is contained in:
Deltacms 2023-02-15 09:11:06 +01:00
parent 12c17cb7a7
commit dcd86aee5e
3 changed files with 10 additions and 9 deletions

View File

@ -5,7 +5,7 @@
"feeds": true,
"feedsLabel": "Syndication RSS",
"itemsperPage": 6,
"versionData": "6.5"
"versionData": "6.6"
},
"texts": {
"NoComment": "No comment yet",
@ -120,7 +120,7 @@
"style": "site\/data\/gallery\/galeries\/theme.css"
},
"config": {
"versionData": "4.2"
"versionData": "4.3"
}
},
"deltacms": {
@ -141,7 +141,7 @@
"logoUrl": "",
"logoWidth": "40",
"maxSizeUpload": "500000",
"versionData": "4.6",
"versionData": "4.7",
"uploadJpg": true,
"uploadPng": true,
"uploadPdf": false,

View File

@ -5,7 +5,7 @@
"feeds": true,
"feedsLabel": "Syndication RSS",
"itemsperPage": 4,
"versionData": "6.5"
"versionData": "6.6"
},
"texts": {
"NoComment": "Pas encore de commentaire",
@ -120,7 +120,7 @@
"style": "site\/data\/gallery\/galeries\/theme.css"
},
"config": {
"versionData": "4.2"
"versionData": "4.3"
}
},
"deltacms": {
@ -141,7 +141,7 @@
"logoUrl": "",
"logoWidth": "40",
"maxSizeUpload": "1000000",
"versionData": "4.6",
"versionData": "4.7",
"uploadJpg": true,
"uploadPng": true,
"uploadPdf": false,

View File

@ -1,6 +1,7 @@
/* Script pour bannière animée avec effet de défilement vertical */
/* Adapte la largeur et la hauteur des images de la bannière à la taille de la fenêtre client */
$.wrapper = function(){
var heightMod ,
widthMod,
@ -23,12 +24,12 @@ $.wrapper = function(){
heightMod = verticalBannerHeightImg * ( widthMod / verticalBannerWidthImg );
$("#headerSwiper .swiper").css("width", widthMod);
$("#headerSwiper .swiper").css("height", heightMod);
}
}
$(document).ready(function(){
$.wrapper();
});
$(window).resize(function(){
$.wrapper();
});
});