$(function() { function htmlEncode(value){ return $('
').text(value).html(); } function htmlDecode(value){ return $('
').html(value).text(); } function create_fullcalendar(){ // Google Calender feed $('#calendar_tomii').fullCalendar({ googleCalendarApiKey: 'AIzaSyARQZH1G-VqGLNJMz21rHu1hMc9OotNgAk', eventSources:[ { googleCalendarId: 'info@lifesnap.jp', className:"event_set_1" }, { googleCalendarId:"japanese__ja@holiday.calendar.google.com", className:"event_set_2" }, { googleCalendarId:"lifesnap.jp_06ijuvifgtbq3p374gtdbjdnak@group.calendar.google.com", className:"event_set_3" } ], timeFormat: "H:mm", loading: function(bool) { if (bool) { $(this).parent().find('.cal_loading').show(); }else{ $(this).parent().find(".cal_loading").fadeOut(200); $(this).find(".fc-event-time").parent().addClass("single_day"); $(this).find(".fc-event-time").parent().parent().addClass("single_day_wrapper"); } } }); $(document).on("click", "a.fc-day-grid-event", function(){ return false; }); } $("img.preload:not('.loaded')").each(function(){ $(this).imagesLoaded(function(){ $(this).stop().animate({opacity:"1"},400); $(this).addClass("loaded"); }); }); });