Merge branch '11206' of https://forge.chapril.org/ZwiiCMS-Team/ZwiiCMS into 11206
This commit is contained in:
commit
07ea34eb9b
@ -1,5 +1,10 @@
|
||||
# Changelog
|
||||
|
||||
|
||||
## Version 11.2.06
|
||||
- Modification :
|
||||
- Thème / Bannière : ergonomie de l'information sur l'image sélectionnée.
|
||||
|
||||
## Version 11.2.05
|
||||
- Corrections :
|
||||
- Configuration / localisation : Les champs de cookies ne devraient pas être obligatoires lorsque la case à cocher de consentement des cookies n'est pas sélectionnée.
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
|
||||
# ZwiiCMS 11.2.05
|
||||
# ZwiiCMS 11.2.06
|
||||
|
||||
Zwii est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation.
|
||||
|
||||
|
@ -45,7 +45,7 @@ class common {
|
||||
|
||||
// Numéro de version
|
||||
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';
|
||||
const ZWII_VERSION = '11.2.05';
|
||||
const ZWII_VERSION = '11.2.06';
|
||||
const ZWII_UPDATE_CHANNEL = "v11";
|
||||
|
||||
public static $actions = [];
|
||||
|
@ -47,9 +47,9 @@ $("input, select").on("change", function() {
|
||||
var tmpImg = new Image();
|
||||
tmpImg.onload = function() {
|
||||
// Informations affichées
|
||||
$("#themeHeaderImageHeight").html(tmpImg.height + "px");
|
||||
$("#themeHeaderImageWidth").html(tmpImg.width + "px");
|
||||
$("#themeHeaderImageRatio").html(tmpImg.width / tmpImg.height);
|
||||
$("#themeHeaderImageHeight").val(tmpImg.height + " px");
|
||||
$("#themeHeaderImageWidth").val(tmpImg.width + " px");
|
||||
$("#themeHeaderImageRatio").val(tmpImg.width / tmpImg.height);
|
||||
|
||||
// Limiter la hauteur à 600 px
|
||||
if (tmpImg.height > 600) {
|
||||
|
@ -163,6 +163,32 @@
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col3 textAlignRight">
|
||||
Informations sur l'image :
|
||||
</div>
|
||||
<div class="col2">
|
||||
<?php echo template::text('themeHeaderImageWidth', [
|
||||
'label' => 'Largeur',
|
||||
'class' => 'textAlignCenter',
|
||||
'disable' => true
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<?php echo template::text('themeHeaderImageHeight', [
|
||||
'label' => 'Hauteur',
|
||||
'class' => 'textAlignCenter',
|
||||
'disable' => true
|
||||
]); ?>
|
||||
</div>
|
||||
<div class="col2">
|
||||
<?php echo template::text('themeHeaderImageRatio', [
|
||||
'label' => 'Ratio (L/H)',
|
||||
'class' => 'textAlignCenter',
|
||||
'disable' => true
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div id="themeHeaderImageOptions" class="displayNone">
|
||||
<div class="row">
|
||||
<div class="col3">
|
||||
@ -192,13 +218,6 @@
|
||||
]); ?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col12 textAlignCenter">
|
||||
<span id="themeHeaderImage">
|
||||
Largeur : <span id="themeHeaderImageWidth"></span> | Hauteur : <span id="themeHeaderImageHeight"></span> | ratio : <span id="themeHeaderImageRatio"></span>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user