Lines Matching refs:source

1079         var source = new this(calendar);
1081 if (source.applyProps(rawInput)) {
1082 return source;
1281 var calendar = this.source.calendar;
1290 …var dateProfile = EventDateProfile_1.default.parse(rawProps, this.source); // returns null on fail…
1741 EventDateProfile.parse = function (rawProps, source) {
1747 var calendar = source.calendar;
1756 forcedAllDay = source.allDayDefault;
2986 parse: function (eventInput, source) {
2989 return RecurringEventDef_1.default.parse(eventInput, source);
2992 return SingleEventDef_1.default.parse(eventInput, source);
3006 function EventDef(source) {
3007 this.source = source;
3011 EventDef.parse = function (rawInput, source) {
3012 var def = new this(source);
3025 var copy = new this.constructor(this.source);
3045 return this.source.rendering;
3051 if (this.source.constraint != null) {
3052 return this.source.constraint;
3054 return this.source.calendar.opt('eventConstraint'); // what about View option?
3060 if (this.source.overlap != null) {
3061 return this.source.overlap;
3063 return this.source.calendar.opt('eventOverlap'); // what about View option?
3069 return this.source.startEditable;
3075 return this.source.durationEditable;
3081 return this.source.editable;
3086 obj.source = this.source;
3132 source: false,
3209 dateProfile = EventDateProfile_1.default.parse(dateProps, eventDef.source);
3240 …Def.dateProfile = this.dateMutation.buildNewDateProfile(origDateProfile, eventDef.source.calendar);
4788 return [eventDef.source];
5597 var calendar = this.source.calendar;
8703 EventPeriod.prototype.requestSource = function (source) {
8705 var request = { source: source, status: 'pending', eventDefs: null };
8706 this.requestsByUid[source.uid] = request;
8708 source.fetch(this.start, this.end, this.timezone).then(function (eventDefs) {
8724 EventPeriod.prototype.purgeSource = function (source) {
8725 var request = this.requestsByUid[source.uid];
8727 delete this.requestsByUid[source.uid];
9010 var source;
9013 source = sources[i];
9014 if (source === matchInput) {
9015 return [source];
9019 source = this.getSourceById(EventSource_1.default.normalizeId(matchInput));
9020 if (source) {
9021 return [source];
9026 return $.grep(sources, function (source) {
9027 return isSourcesEquivalent(matchInput, source);
9035 return $.grep(this.otherSources, function (source) {
9036 return source.id && source.id === id;
11348 var source = EventSourceParser_1.default.parse(rawSource, _this);
11349 if (source) {
11350 eventManager.addSource(source);
11400 …var eventDef = EventDefParser_1.default.parse(eventInput, eventInput.source || eventManager.sticky…
11468 var source = EventSourceParser_1.default.parse(sourceInput, this);
11469 if (source) {
11470 this.eventManager.addSource(source);