jQuery(document).ready(function( $ ){
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,listYear'
},
displayEventTime: false, // don't show the time column in list view
// THIS KEY WON'T WORK IN PRODUCTION!!!
// To make your own Google API key, follow the directions here:
// http://fullcalendar.io/docs/google_calendar/
googleCalendarApiKey: 'AIzaSyCTJEjZVmD_zEZpKiB0DZTpZYqzjxC-UQU"',
// US Holidays
events: 'iso.yokohama.web@gmail.com',
eventClick: function(event) {
// opens events in a popup window
window.open(event.url, 'gcalevent', 'width=700,height=600');
return false;
},
loading: function(bool) {
$('#loading').toggle(bool);
}
});
});
});
--
別のサーバー上の JavaScript のファイルへリンクしたいなら
( と同じように)
これは、HTML コードなので「HTMLコードの追加」を使ってください。
コメント終わり */