mirror of
https://github.com/grocy/grocy.git
synced 2025-12-01 02:31:57 +00:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
|
|
$("#calendar").fullCalendar({
|
|||
|
|
"themeSystem": "bootstrap4",
|
|||
|
|
"header": {
|
|||
|
|
"left": "month,basicWeek",
|
|||
|
|
"center": "title",
|
|||
|
|
"right": "prev,next"
|
|||
|
|
},
|
|||
|
|
"weekNumbers": true,
|
|||
|
|
"eventLimit": true,
|
|||
|
|
"eventSources": fullcalendarEventSources
|
|||
|
|
});
|