-
|
My inner sliders are image galleries. I tried the following method and had no luck. outerSlider.root.addEventListener('touchstart', evt =>
{
if (evt.target.matches('img'))
{
outerSlider.Components.Drag.disable(true);
}
});
outerSlider.root.addEventListener('touchend', evt =>
{
if (evt.target.matches('img'))
{
outerSlider.Components.Drag.disable(false);
}
});I tried commenting out the code block of Kindly advise. Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
ianthedev
Nov 3, 2025
Replies: 1 comment
-
|
I found the answer in this thread. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ianthedev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found the answer in this thread.