One workaround you could do:Using the gesture API, you can disable all
gestures, and listen for the swipe yourself. Then stop the video, then
hand it back to DPS to let the article change happen.Last time i tried
using the gesture api like this for swiping, though, it introduced some
weird content refresh behavior. If you want to try it, you can do it
like this: adobeDPS.Gesture.disableNavigation();
$('.content').on('swipe',function() { [code to stop the media playing]
adobeDPS.Gesture.relinquis...