$.each(this._options.disabledTimeIntervals, function () {
if (targetMoment.isBetween(this[0], this[1])) {
found = true;
return false;
}
to:
$.each(this._options.disabledTimeIntervals, function (index) {
if (index % 2) return true
if (targetMoment.isBetween (this [index], this [index+1])) {
found = true;
return false;
}
tempusdominus-bootstrap-4 row-> 634
to:
unfortunately it doesn't seem to work well