Merge branch 'master' into dev10

This commit is contained in:
Fred Tempez 2020-03-12 08:51:23 +01:00
commit d870722c3a
5 changed files with 21 additions and 7 deletions

View File

@ -21,6 +21,10 @@
- Modification :
- Chargement paresseux des images.
## version 9.2.24
- Correction :
- Mauvaise configuration de SimpleLightBox
## version 9.2.23
- Nouveautés :
- Configuration du réseau : proxy http ou tcp sans authentification.

View File

@ -33,7 +33,7 @@ class common {
const TEMP_DIR = 'site/tmp/';
// Numéro de version
const ZWII_VERSION = '10.0.041.rc';
const ZWII_VERSION = '10.0.042';
const ZWII_UPDATE_CHANNEL = "v10";
public static $actions = [];

View File

@ -7,7 +7,14 @@
);
// Démarrer le script
//var a = $('.gallery').simpleLightbox({closeText:"×",captionsData:'alt'});
var a = new SimpleLightbox('.gallery', {
closeText:"×",
captionsData:'alt'
});
var b = new SimpleLightbox('.galleryGalleryPicture', {
captionSelector: "self",
captionType: "data",
captionsData: "caption",
closeText: "×"
});
});

View File

@ -283,9 +283,10 @@ class gallery extends common {
$this->addOutput([
'showBarEditButton' => true,
'title' => $this->getData(['module', $this->getUrl(0), $this->getUrl(1), 'config', 'name']),
/* Désactivé car SLB est actif pour tout le site
'vendor' => [
'simplelightbox'
],
],*/
'view' => 'gallery'
]);
}

View File

@ -12,10 +12,12 @@
/**
* Galerie d'image
*/
* SLB est activé pour tout le site
*
$(".galleryGalleryPicture").simpleLightbox({
captionSelector: "self",
captionType: "data",
captionsData: "caption",
closeText: "×"
});
});
*/