From 0f4e5616892d1424fec533d373162cdaa8579c33 Mon Sep 17 00:00:00 2001 From: Anton Date: Thu, 14 Sep 2023 14:35:37 +0200 Subject: [PATCH] Fix handson table scrolling --- vendor/assets/javascripts/handsontable.full.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/assets/javascripts/handsontable.full.js b/vendor/assets/javascripts/handsontable.full.js index e9fd0a60c..57d43ec59 100644 --- a/vendor/assets/javascripts/handsontable.full.js +++ b/vendor/assets/javascripts/handsontable.full.js @@ -25743,7 +25743,7 @@ function () { key: "onCloneWheel", value: function onCloneWheel(event) { if (this.scrollableElement !== window) { - event.preventDefault(); + //event.preventDefault(); } // There was if statement which controlled flow of this function. It avoided the execution of the next lines // on mobile devices. It was changed. Broader description of this case is included within issue #4856.