Add ability to prevent swipe for specific elements
This commit is contained in:
parent
e4761d3a37
commit
4e70cf8126
13
js/reveal.js
13
js/reveal.js
|
@ -3482,6 +3482,8 @@
|
||||||
*/
|
*/
|
||||||
function onTouchStart( event ) {
|
function onTouchStart( event ) {
|
||||||
|
|
||||||
|
if(preventSwipe(event.target)) return true;
|
||||||
|
|
||||||
touch.startX = event.touches[0].clientX;
|
touch.startX = event.touches[0].clientX;
|
||||||
touch.startY = event.touches[0].clientY;
|
touch.startY = event.touches[0].clientY;
|
||||||
touch.startCount = event.touches.length;
|
touch.startCount = event.touches.length;
|
||||||
|
@ -3505,6 +3507,8 @@
|
||||||
*/
|
*/
|
||||||
function onTouchMove( event ) {
|
function onTouchMove( event ) {
|
||||||
|
|
||||||
|
if(preventSwipe(event.target)) return true;
|
||||||
|
|
||||||
// Each touch should only trigger one action
|
// Each touch should only trigger one action
|
||||||
if( !touch.captured ) {
|
if( !touch.captured ) {
|
||||||
onUserInput( event );
|
onUserInput( event );
|
||||||
|
@ -3786,6 +3790,15 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function preventSwipe(target) {
|
||||||
|
while( target && typeof target.hasAttribute == 'function' ) {
|
||||||
|
if(target.hasAttribute('prevent-swipe')) return true;
|
||||||
|
target = target.parentNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------//
|
// --------------------------------------------------------------------//
|
||||||
// ------------------------ PLAYBACK COMPONENT ------------------------//
|
// ------------------------ PLAYBACK COMPONENT ------------------------//
|
||||||
|
|
Loading…
Reference in New Issue