次のコードを Firefox 15 で動作させるには、正確に何を変更すればよいかわかりません。
eventDrop: function (event, dayDelta) {
updateCalendarEvent(event.id, dayDelta);
//Firefox 15 fires eventClick for no good reason???
},
eventClick: function (event) {
alert('event click');
if (event.url) {
alert(event.url);
vUrl = '../Activities/' + event.url;
openActivityAddEditDialog(vUrl, 'Edit Activity');
return false;
}
},
私はかなりの調査を行いましたが、これは間違いなくバグです。コードは Chrome、Safari、Firefox 14、さらには IE でも正常に動作しますが、Firefox 15 では動作しません。ほぼ 2 か月が経過しましたが、修正の見通しは立っていません。
回避策のハックについて誰かが投稿しました: http://code.google.com/p/fullcalendar/issues/detail?id=1523
別の同様の未回答のフル カレンダー Firefox SO の質問: Firefox でフル カレンダー イベントのハイパーリンクが自動的に起動する