We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ba2a81c + f98107b commit 7bc5135Copy full SHA for 7bc5135
1 file changed
src/js/modules/infragistics.ui.scroll.js
@@ -2421,8 +2421,6 @@
2421
this._offsetDirection = 0;
2422
2423
this._igScollTouchPrevented = false;
2424
-
2425
- this._showScrollbars(true);
2426
},
2427
2428
_onTouchMoveContainer: function (event) {
@@ -2510,11 +2508,12 @@
2510
2508
}
2511
2509
2512
if (scrolledXY.x === 0 && scrolledXY.y === 0) {
2513
- this._igScollTouchPrevented = true;
+ this._igScollTouchPrevented = true;
2514
2515
2516
//On Safari preventing the touchmove would prevent default page scroll behaviour even if there is the element doesn't have overflow
2517
if (!this._igScollTouchPrevented && event.cancelable) {
+ this._showScrollbars(true);
2518
event.preventDefault();
2519
2520
0 commit comments