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

Function rdatesToString

codebase/sources/dhtmlxscheduler.js:18237–18244  ·  view source on GitHub ↗
(param, rdates, tzid)

Source from the content-addressed store, hash-verified

18235 }
18236 }
18237 function rdatesToString(param, rdates, tzid) {
18238 var isUTC = !tzid || tzid.toUpperCase() === "UTC";
18239 var header = isUTC ? "".concat(param, ":") : "".concat(param, ";TZID=").concat(tzid, ":");
18240 var dateString = rdates.map(function(rdate) {
18241 return timeToUntilString(rdate.valueOf(), isUTC);
18242 }).join(",");
18243 return "".concat(header).concat(dateString);
18244 }
18245 function recurring(scheduler2) {
18246 scheduler2.ext.recurring = { confirm: function(context) {
18247 }, confirmDefault: function showRecurringConfirmModal(context) {

Callers 1

dhtmlxscheduler.jsFile · 0.70

Calls 1

timeToUntilStringFunction · 0.70

Tested by

no test coverage detected