calendar 1.4
This commit is contained in:
parent
f654615ec5
commit
bc990d3412
@ -1,4 +1,6 @@
|
||||
# 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).
|
||||
# Version 1.2
|
||||
- Ajout d'un bouton vers la page d'édition de la feuille de style de la page.
|
||||
|
@ -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":""}
|
@ -47,7 +47,7 @@
|
||||
font-size: 12px; /* Taille de la croix de fermeture */
|
||||
}
|
||||
|
||||
.gc-calendar-month-year {
|
||||
.gc-calendar-month-year > span {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -12,7 +12,7 @@
|
||||
* @link http://zwiicms.fr/
|
||||
*/
|
||||
|
||||
|
||||
// https://www.jqueryscript.net/time-clock/animated-calendar-event-gc.html
|
||||
|
||||
const jsonOptions = '<?php echo json_encode($module::$calendars); ?>';
|
||||
const objOptions = JSON.parse(jsonOptions);
|
||||
@ -20,7 +20,7 @@ const events = generateEvents(objOptions);
|
||||
|
||||
// Définir la fonction d'initialisation du calendrier
|
||||
function initializeCalendar() {
|
||||
$("#calendar").calendarGC({
|
||||
var calendar = $("#calendar").calendarGC({
|
||||
dayBegin: 1,
|
||||
dayNames: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
|
||||
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() {
|
||||
const currentDate = new Date();
|
||||
const formattedDate = currentDate.toISOString().split('T')[0];
|
||||
$("#calendar").calendarGC('setDate', formattedDate);
|
||||
calendar.setDate(formattedDate);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user