Has anyone encountered an issue with fullcalendar js where the title of a long event shows up every week? I've tried using this code on versions 5 and 6, but the title continues to display weekly. Is there a way to make the title show up only once?
<!DOCTYPE html>
<html lang='en'>
<!-- https://fullcalendar.io/docs/initialize-globals-->
<head>
<meta charset='utf-8' />
<script src='https://cdn.jsdelivr.net/npm/@fullcalendar/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d8bbb7aabd98eef6e9f6e9e8">[email protected]</a>/index.global.min.js'>
</script>
<script src='https://cdn.jsdelivr.net/npm/@fullcalendar/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="2c484d554b5e45486c1a021d021d1c">[email protected]</a>/index.global.min.js'></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
initialView: 'dayGridMonth',
events: [
{
title: 'Testing 1 the quick brown fox jumps over the lazy dog.',
start: '2024-01-02',
end: '2024-02-03',
color: 'green'
}
],
});
calendar.render();
});
</script>
</head>
<body>
<div id='calendar'></div>
</body>
</html>
To see how it appears when rendered in the browser, check out the image here: https://i.sstatic.net/JiiUh.png