@syncfusion/ej2-schedule 31.2.12 → 31.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27312,9 +27312,10 @@ class Agenda extends AgendaBase {
27312
27312
  }
27313
27313
  else {
27314
27314
  for (let a = 0, length = liCollection.length; a < length; a++) {
27315
+ const targetRect = target.getBoundingClientRect();
27315
27316
  li = liCollection[parseInt(a.toString(), 10)];
27316
27317
  liDetails = li.getBoundingClientRect();
27317
- if (liDetails.top >= 0) {
27318
+ if (targetRect.top < liDetails.top) {
27318
27319
  filterElement = closest(li, '.' + AGENDA_CELLS_CLASS);
27319
27320
  break;
27320
27321
  }