calendar 1.4

This commit is contained in:
Fred Tempez 2024-08-30 17:46:40 +02:00
parent f654615ec5
commit bc990d3412
4 changed files with 7 additions and 5 deletions

View File

@ -1,4 +1,6 @@
# Version 1.3 # Version 1.3
- Corrige le pointeur de la ouris sur le mois.
- Un clic sur le mois affiche le mois courant.
- Supprime un slash en fin d'url (fonction add). - Supprime un slash en fin d'url (fonction add).
# Version 1.2 # Version 1.2
- Ajout d'un bouton vers la page d'édition de la feuille de style de la page. - Ajout d'un bouton vers la page d'édition de la feuille de style de la page.

View File

@ -1 +1 @@
{"name":"calendar","realName":"Calendrier","version":"1.2","update":"0.0","delete":true,"dataDirectory":""} {"name":"calendar","realName":"Calendrier","version":"1.3","update":"0.0","delete":true,"dataDirectory":""}

View File

@ -47,7 +47,7 @@
font-size: 12px; /* Taille de la croix de fermeture */ font-size: 12px; /* Taille de la croix de fermeture */
} }
.gc-calendar-month-year { .gc-calendar-month-year > span {
cursor: pointer; cursor: pointer;
} }

View File

@ -12,7 +12,7 @@
* @link http://zwiicms.fr/ * @link http://zwiicms.fr/
*/ */
// https://www.jqueryscript.net/time-clock/animated-calendar-event-gc.html
const jsonOptions = '<?php echo json_encode($module::$calendars); ?>'; const jsonOptions = '<?php echo json_encode($module::$calendars); ?>';
const objOptions = JSON.parse(jsonOptions); const objOptions = JSON.parse(jsonOptions);
@ -20,7 +20,7 @@ const events = generateEvents(objOptions);
// Définir la fonction d'initialisation du calendrier // Définir la fonction d'initialisation du calendrier
function initializeCalendar() { function initializeCalendar() {
$("#calendar").calendarGC({ var calendar = $("#calendar").calendarGC({
dayBegin: 1, dayBegin: 1,
dayNames: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'], dayNames: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
monthNames: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'], monthNames: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
@ -72,7 +72,7 @@ function initializeCalendar() {
$(document).on('click', '.gc-calendar-month-year', function() { $(document).on('click', '.gc-calendar-month-year', function() {
const currentDate = new Date(); const currentDate = new Date();
const formattedDate = currentDate.toISOString().split('T')[0]; const formattedDate = currentDate.toISOString().split('T')[0];
$("#calendar").calendarGC('setDate', formattedDate); calendar.setDate(formattedDate);
}); });
} }