aboutsummaryrefslogtreecommitdiff
path: root/public/js/calendar.js
diff options
context:
space:
mode:
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