Adam Shaw 11 tahun lalu
induk
melakukan
69c3a70762
2 mengubah file dengan 2 tambahan dan 9 penghapusan
  1. 1 1
      changelog.md
  2. 1 8
      src/gcal/gcal.js

+ 1 - 1
changelog.md

@@ -1,5 +1,5 @@
 
-v2.2.1 (2014-11-18)
+v2.2.1 (2014-11-19)
 -------------------
 
 - Migrate Google Calendar plugin to use V3 of the API ([1526])

+ 1 - 8
src/gcal/gcal.js

@@ -77,7 +77,7 @@ function transformOptions(sourceOptions, start, end, timezone, calendar) {
 	}
 
 	if (!apiKey) {
-		reportError("Specify a Google Calendar API key (googleCalendarApiKey).");
+		reportError("Specify a googleCalendarApiKey. See http://fullcalendar.io/docs/google_calendar/");
 		return {}; // an empty source to use instead. won't fetch anything.
 	}
 
@@ -139,14 +139,7 @@ function transformOptions(sourceOptions, start, end, timezone, calendar) {
 			return events;
 		}
 	});
-	
 }
 
 
-// legacy
-fc.gcalFeed = function(url, sourceOptions) {
-	return $.extend({}, sourceOptions, { url: url });
-};
-
-
 });