diff options
author | Rory Hardy | 2013-08-05 22:49:39 -0500 |
---|---|---|
committer | Rory Hardy | 2013-08-05 22:49:39 -0500 |
commit | 32865b43f8fd9cbf00733c59f171c11c39d8c93c (patch) | |
tree | 84cf6535112bec75517b0e52a97423eb28cfff09 /plugin/leap/leap.js | |
parent | dbcbc7aa699452f77d1c4561318b72180b3273af (diff) |
Put the timing code back in.
Occasionally gestures were fired twice. This helps prevent that.
modified: plugin/leap/leap.js
Diffstat (limited to 'plugin/leap/leap.js')
-rw-r--r-- | plugin/leap/leap.js | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/plugin/leap/leap.js b/plugin/leap/leap.js index ac1c26e..62a30fc 100644 --- a/plugin/leap/leap.js +++ b/plugin/leap/leap.js @@ -25,12 +25,14 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re leapConfig = Reveal.getConfig().leap, leapDOM = document.createElement('div'), body = document.body, + lastGesture = 0, config = { naturalSwipe : true, pointerDefault : 15, pointerColor : '#00aaff', pointerOpacity : 0.75 - }; + }, + now; // Merge user defined settings with defaults if ( leapConfig ) { @@ -48,6 +50,12 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re body.appendChild(leapDOM); controller.on('frame', function (frame) { + // Timing code to rate limit gesture execution + now = new Date().getTime(); + + if( lastGesture === 0 ) { + lastGesture = now; + } // Pointer code if ( frame.hands.length === 1 && frame.fingers.length === 1 ) { @@ -73,13 +81,13 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re } // Gestures - if ( frame.gestures.length > 0 ) { + if ( (now - lastGesture) > 500 && frame.gestures.length > 0 ) { var gesture = frame.gestures[0]; // One hand gestures if( frame.hands.length === 1 ) { // Swipe gestures. 2+ fingers. - if ( frame.fingers.length > 1 && gesture.speed > 1000 && gesture.state === 'start' && gesture.type === 'swipe' ) { + if ( frame.fingers.length > 1 && gesture.speed > 1000 && gesture.type === 'swipe' ) { var x = gesture.direction[0], y = gesture.direction[1]; @@ -90,6 +98,8 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re } else { config.naturalSwipe ? Reveal.right() : Reveal.left(); } + + lastGesture = now; // Up/down swipe gestures } else { if ( y > 0 ) { @@ -97,6 +107,8 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re } else { config.naturalSwipe ? Reveal.up() : Reveal.down(); } + + lastGesture = now; } } // Two hand gestures @@ -105,6 +117,8 @@ var b=right.criteria;if(a!==b){if(a>b||a===void 0)return 1;if(a<b||b===void 0)re if ( gesture.direction[1] > 0 ) { Reveal.toggleOverview(); } + + lastGesture = now; } } }); |