Home
last modified time | relevance | path

Searched refs:rawProps (Results 1 – 1 of 1) sorted by relevance

/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js1131 EventSource.prototype.applyManualStandardProps = function (rawProps) {
1132 if (rawProps.id != null) {
1133 this.id = EventSource.normalizeId(rawProps.id);
1136 if ($.isArray(rawProps.className)) {
1137 this.className = rawProps.className;
1139 else if (typeof rawProps.className === 'string') {
1140 this.className = rawProps.className.split(/\s+/);
1288 SingleEventDef.prototype.applyManualStandardProps = function (rawProps) {
1289 var superSuccess = _super.prototype.applyManualStandardProps.call(this, rawProps);
1290 …var dateProfile = EventDateProfile_1.default.parse(rawProps, this.source); // returns null on fail…
[all …]