diff options
author | Hakim El Hattab | 2013-08-10 14:09:23 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-08-10 14:09:23 -0400 |
commit | 0add83e9ed2dfe1299e38b7654f8928909d92e69 (patch) | |
tree | 09841c5263b579a39c0e8f3ea4687349a0c53872 /js/reveal.js | |
parent | b800d147b1622b607f0aee2ed989bc5e045e17b9 (diff) |
renamed handled flag to captured
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/js/reveal.js b/js/reveal.js index 4bdb806..8f7eb70 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -147,7 +147,7 @@ var Reveal = (function(){ startY: 0, startSpan: 0, startCount: 0, - handled: false, + captured: false, threshold: 40 }; @@ -2315,11 +2315,11 @@ var Reveal = (function(){ function onTouchMove( event ) { // Each touch should only trigger one action - if( !touch.handled ) { + if( !touch.captured ) { var currentX = event.touches[0].clientX; var currentY = event.touches[0].clientY; - // If the touch started off with two points and still has + // If the touch started with two points and still has // two active touches; test for the pinch gesture if( event.touches.length === 2 && touch.startCount === 2 && config.overview ) { @@ -2335,7 +2335,7 @@ var Reveal = (function(){ // If the span is larger than the desire amount we've got // ourselves a pinch if( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) { - touch.handled = true; + touch.captured = true; if( currentSpan < touch.startSpan ) { activateOverview(); @@ -2355,19 +2355,19 @@ var Reveal = (function(){ deltaY = currentY - touch.startY; if( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) { - touch.handled = true; + touch.captured = true; navigateLeft(); } else if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) { - touch.handled = true; + touch.captured = true; navigateRight(); } else if( deltaY > touch.threshold ) { - touch.handled = true; + touch.captured = true; navigateUp(); } else if( deltaY < -touch.threshold ) { - touch.handled = true; + touch.captured = true; navigateDown(); } @@ -2388,7 +2388,7 @@ var Reveal = (function(){ */ function onTouchEnd( event ) { - touch.handled = false; + touch.captured = false; } |