fullcalendarプラグインを変更して、さまざまなクリック方法dayClick
などを Cookie に保存するにはどうすればよいですか? 次回このカレンダーを開いたときに、ユーザー設定がデフォルトになる場合。
すでに Cookie プラグインを使用しています: https://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js
回答に続く有効な Cookie コードの更新:
var calendarView = (!$.cookie('calendarDefaultView')) ? 'month' : $.cookie('calendarDefaultView');
$calendar.fullCalendar({
defaultView: calendarView,
viewDisplay: function(view){
$.cookie('calendarDefaultView', view.name, {expires:7, path: '/'});
},