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

Function deleteExceptionFromStorage

codebase/sources/dhtmlxscheduler.js:18522–18529  ·  view source on GitHub ↗
(exception)

Source from the content-addressed store, hash-verified

18520 scheduler2.callEvent("onEventChanged", [scheduler2._events[targetIndex].id, scheduler2._events[targetIndex]]);
18521 }
18522 function deleteExceptionFromStorage(exception) {
18523 for (const i in scheduler2._events) {
18524 let tev = scheduler2._events[i];
18525 if (tev.id == exception.id) {
18526 delete scheduler2._events[i];
18527 }
18528 }
18529 }
18530 function updateTextEvents(id, data) {
18531 for (let i in scheduler2._events) {
18532 let tev = scheduler2._events[i];

Callers 3

recurringFunction · 0.70
handleFollowingFunction · 0.70
handleAllEventsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected