This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
oc.registerControl('full-calendar', class extends oc.ControlBase { | |
connect() { | |
this.calendar = new FullCalendar.Calendar(this.element, { | |
headerToolbar: { | |
left: 'prev,next today', | |
center: 'title', | |
right: null, | |
}, | |
initialView: window.innerWidth < 1000 ? 'listWeek' : 'dayGridMonth', |