MCPcopy Create free account
hub / github.com/DHTMLX/scheduler / getSerializator

Function getSerializator

codebase/sources/dhtmlxscheduler.es.js:6196–6207  ·  view source on GitHub ↗
(scheduler2)

Source from the content-addressed store, hash-verified

6194 }, c_start: "BEGIN:VCALENDAR", e_start: "BEGIN:VEVENT", e_end: "END:VEVENT", c_end: "END:VCALENDAR" };
6195}
6196function getSerializator(scheduler2) {
6197 return (function() {
6198 var res = {};
6199 for (var a in this._events) {
6200 var ev = this._events[a];
6201 if (ev.id.toString().indexOf("#") == -1) {
6202 res[ev.id] = ev;
6203 }
6204 }
6205 return res;
6206 }).bind(scheduler2);
6207}
6208function extend$7(scheduler2) {
6209 scheduler2._loaded = {};
6210 scheduler2._load = function(url2, from) {

Callers 2

extend$7Function · 0.70
serializeFunction · 0.70

Calls 1

bindMethod · 0.65

Tested by

no test coverage detected