@syncfusion/ej2-schedule 29.1.34 → 29.1.37
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.
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +1 -1
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +1 -1
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +23 -21
- package/src/schedule/actions/resize.js +1 -1
|
@@ -21492,7 +21492,7 @@ class Resize extends ActionBase {
|
|
|
21492
21492
|
if (!isTop) {
|
|
21493
21493
|
offsetValue += this.actionObj.clone.offsetHeight;
|
|
21494
21494
|
}
|
|
21495
|
-
const minutes = (offsetValue / this.actionObj.cellHeight) * this.actionObj.slotInterval;
|
|
21495
|
+
const minutes = (offsetValue / Math.round(this.actionObj.cellHeight)) * this.actionObj.slotInterval;
|
|
21496
21496
|
const element = this.actionObj.clone.offsetParent;
|
|
21497
21497
|
if (isNullOrUndefined(element)) {
|
|
21498
21498
|
return;
|