Christopher
Christopher
Hi devenini, yes, I tried `stop()`; but this not only stops scrolling but also disables the scroll event detection in locomotive-scroll, so I cannot resume with `start()` when the user...
It might be fixed by changing line 2400: FROM: ``` if (this.instance.delta.x > this.instance.scroll.x) { if (this.instance.direction !== 'right') { this.instance.direction = 'right'; } } ``` TO: ``` else if...
I made another test case with horizontal scrolling and it worked fine with my fix. So I'm proposing this change. Here are the tests with the small fix applied: https://kunden.cmcm.info/ls-direction-bug/fixed-vertical.html...
I took a deeper look. The real problem is here: ``` if (this.isDraggingScrollbar) { requestAnimationFrame(function () { var x = (e.clientX - _this5.scrollbarBCR.left) * 100 / _this5.scrollbarWidth * _this5.instance.limit.x /...
> Hi The following code works well for me. > > ``` > $('textarea').keydown(function (e) { > if (e.which == 38 || e.which == 40) { > locoScroll.stop() > }...
I posted a patch 1 year ago. https://github.com/locomotivemtl/locomotive-scroll/pull/364 I don't know why it was never used - or at least commented on ...
Happens in Adminer v4.8.4, tested with PHP 8.2 and 8.3.
MySQL 8.0.37 *edited* Posted to early, have to check something first.
So I can always reproduce it on MySQL 8.0.3.7 (and version before). Here, tinyint(1) after another tinyint also misses the length. But no problems so far on MySQL 5.7.44, MariaDB...
To my knowledge tinyint(1) is still allowed on MySQL 8.x to emulate a boolean field. As for int(10), this is automatically set when the field is set to "unsigned". I'm...