@forcecalendar/interface 1.0.53 → 1.0.55
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/force-calendar-interface.esm.js +1 -4
- package/dist/force-calendar-interface.esm.js.map +1 -1
- package/dist/force-calendar-interface.umd.js +1 -1
- package/dist/force-calendar-interface.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/index.js +0 -1
- package/src/utils/DOMUtils.js +1 -5
|
@@ -734,10 +734,7 @@ class k {
|
|
|
734
734
|
static debounce(t, e = 250) {
|
|
735
735
|
let r;
|
|
736
736
|
return function(...s) {
|
|
737
|
-
|
|
738
|
-
clearTimeout(r), t(...s);
|
|
739
|
-
};
|
|
740
|
-
clearTimeout(r), r = setTimeout(n, e);
|
|
737
|
+
clearTimeout(r), r = setTimeout(() => t.apply(this, s), e);
|
|
741
738
|
};
|
|
742
739
|
}
|
|
743
740
|
/**
|