aboutsummaryrefslogtreecommitdiffstats
path: root/library/fullcalendar/examples/month-view.html
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-07-04 08:47:22 +0000
committerMario <mario@mariovavti.com>2023-07-04 08:47:22 +0000
commitd31eb4c89cd0a53eb3caaf2d0ce2f317c251aa89 (patch)
tree559fac980ab869cd27b3183c9f22ccf667888614 /library/fullcalendar/examples/month-view.html
parent6753d260e47bddbc61bbfe1fe6d9de384afc2da6 (diff)
downloadvolse-hubzilla-d31eb4c89cd0a53eb3caaf2d0ce2f317c251aa89.tar.gz
volse-hubzilla-d31eb4c89cd0a53eb3caaf2d0ce2f317c251aa89.tar.bz2
volse-hubzilla-d31eb4c89cd0a53eb3caaf2d0ce2f317c251aa89.zip
update fullcalendar
Diffstat (limited to 'library/fullcalendar/examples/month-view.html')
-rw-r--r--library/fullcalendar/examples/month-view.html32
1 files changed, 16 insertions, 16 deletions
diff --git a/library/fullcalendar/examples/month-view.html b/library/fullcalendar/examples/month-view.html
index a285ff949..dbd886122 100644
--- a/library/fullcalendar/examples/month-view.html
+++ b/library/fullcalendar/examples/month-view.html
@@ -9,7 +9,7 @@
var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
- initialDate: '2020-09-12',
+ initialDate: '2023-01-12',
editable: true,
selectable: true,
businessHours: true,
@@ -17,57 +17,57 @@
events: [
{
title: 'All Day Event',
- start: '2020-09-01'
+ start: '2023-01-01'
},
{
title: 'Long Event',
- start: '2020-09-07',
- end: '2020-09-10'
+ start: '2023-01-07',
+ end: '2023-01-10'
},
{
groupId: 999,
title: 'Repeating Event',
- start: '2020-09-09T16:00:00'
+ start: '2023-01-09T16:00:00'
},
{
groupId: 999,
title: 'Repeating Event',
- start: '2020-09-16T16:00:00'
+ start: '2023-01-16T16:00:00'
},
{
title: 'Conference',
- start: '2020-09-11',
- end: '2020-09-13'
+ start: '2023-01-11',
+ end: '2023-01-13'
},
{
title: 'Meeting',
- start: '2020-09-12T10:30:00',
- end: '2020-09-12T12:30:00'
+ start: '2023-01-12T10:30:00',
+ end: '2023-01-12T12:30:00'
},
{
title: 'Lunch',
- start: '2020-09-12T12:00:00'
+ start: '2023-01-12T12:00:00'
},
{
title: 'Meeting',
- start: '2020-09-12T14:30:00'
+ start: '2023-01-12T14:30:00'
},
{
title: 'Happy Hour',
- start: '2020-09-12T17:30:00'
+ start: '2023-01-12T17:30:00'
},
{
title: 'Dinner',
- start: '2020-09-12T20:00:00'
+ start: '2023-01-12T20:00:00'
},
{
title: 'Birthday Party',
- start: '2020-09-13T07:00:00'
+ start: '2023-01-13T07:00:00'
},
{
title: 'Click for Google',
url: 'http://google.com/',
- start: '2020-09-28'
+ start: '2023-01-28'
}
]
});