aboutsummaryrefslogtreecommitdiff
path: root/public/js/calendar.js
diff options
context:
space:
mode:
authorpolo <ordipolo@gmx.fr>2025-11-14 00:34:22 +0100
committerpolo <ordipolo@gmx.fr>2025-11-14 00:34:22 +0100
commitd7707261c216e3cfe68662b2a935135cd9053583 (patch)
tree679c7093aca410f9af99e17739af7b17f7bbc317 /public/js/calendar.js
parent7eeec8829e6698f16a20f49cc1c54e049fd34084 (diff)
downloadcms-d7707261c216e3cfe68662b2a935135cd9053583.tar.gz
cms-d7707261c216e3cfe68662b2a935135cd9053583.tar.bz2
cms-d7707261c216e3cfe68662b2a935135cd9053583.zip
calendrier responsive petits oublis, bordures de form_eventHEADmain
Diffstat (limited to 'public/js/calendar.js')
-rw-r--r--public/js/calendar.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/calendar.js b/public/js/calendar.js
index 844d411..8809246 100644
--- a/public/js/calendar.js
+++ b/public/js/calendar.js
@@ -80,7 +80,7 @@ document.addEventListener('DOMContentLoaded', function(){
80 const end_hour = (info.event.allDay ? '' : '<br>à ' + end.split('T')[1]).replace(":", "h"); 80 const end_hour = (info.event.allDay ? '' : '<br>à ' + end.split('T')[1]).replace(":", "h");
81 const formated_end = end_date.split('-')[2] + '/' + end_date.split('-')[1] + '/' + end_date.split('-')[0] + end_hour; 81 const formated_end = end_date.split('-')[2] + '/' + end_date.split('-')[1] + '/' + end_date.split('-')[0] + end_hour;
82 82
83 let aside_content = `<div class="event" style="border-color: ` + info.event.backgroundColor +`;"> 83 let aside_content = `<div id="event" style="border-color: ` + info.event.backgroundColor +`;">
84 <h3>` + info.event.title + `</h3> 84 <h3>` + info.event.title + `</h3>
85 <p><i>` + info.event.extendedProps.description + `</i></p>`; 85 <p><i>` + info.event.extendedProps.description + `</i></p>`;
86 if(checked && (formated_start === formated_end)){ // affichage simplifié évènement d'un jour 86 if(checked && (formated_start === formated_end)){ // affichage simplifié évènement d'un jour