@progressive-development/pd-calendar 0.2.14 → 0.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.
- package/package.json +1 -1
- package/src/PdCalendar.js +1 -4
package/package.json
CHANGED
package/src/PdCalendar.js
CHANGED
|
@@ -513,8 +513,7 @@ export class PdCalendar extends LitElement {
|
|
|
513
513
|
|
|
514
514
|
// eslint-disable-next-line class-methods-use-this
|
|
515
515
|
_touchStartEvent(e) {
|
|
516
|
-
this._wheelDelta = e.changedTouches[0].screenX;
|
|
517
|
-
e.preventDefault();
|
|
516
|
+
this._wheelDelta = e.changedTouches[0].screenX;
|
|
518
517
|
e.stopPropagation();
|
|
519
518
|
}
|
|
520
519
|
|
|
@@ -527,8 +526,6 @@ export class PdCalendar extends LitElement {
|
|
|
527
526
|
} else if (result > TOUCH_MIN_MOVE) {
|
|
528
527
|
this._nextMonth();
|
|
529
528
|
}
|
|
530
|
-
|
|
531
|
-
e.preventDefault();
|
|
532
529
|
e.stopPropagation();
|
|
533
530
|
}
|
|
534
531
|
|