FullCalendar の現在のビューポート サイズに基づいて、ユーザーのビューを変更する簡単な方法はありますか?
私がやりたいのは、デスクトップでは月表示、iPhone またはモバイル デバイスを使用している場合は日表示です。現時点では、月表示ではすべてのイベントがモバイルで押しつぶされています。
現在のコード:
$(document).ready(function() {
$("#primary #calendar").fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
timeFormat: 'h(:mm)tt',
eventSources: [
{
url: 'http://www.google.com/mycal1',
color: 'blue',
textColor: 'white'
},
{
url: 'http://www.google.com/mycal2',
color: 'white',
textColor: 'black'
}
]
})
});