From 2dce7a74f7fc4d31a4aa677da518e678cbfc2f5e Mon Sep 17 00:00:00 2001 From: Adam Bradley Date: Tue, 22 Jul 2014 12:43:57 -0500 Subject: [PATCH] fix(gesture): fix onSwipeDown Closes #1810 --- js/angular/directive/gesture.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/angular/directive/gesture.js b/js/angular/directive/gesture.js index 0e0e05c6f9..70b9c47658 100644 --- a/js/angular/directive/gesture.js +++ b/js/angular/directive/gesture.js @@ -1,6 +1,6 @@ forEach( - 'onHold onTap onTouch onRelease onDrag onDragUp onDragRight onDragDown onDragLeft onSwipe onSwipeUp onSwipeRight onSwipeBottom onSwipeLeft'.split(' '), + 'onHold onTap onTouch onRelease onDrag onDragUp onDragRight onDragDown onDragLeft onSwipe onSwipeUp onSwipeRight onSwipeDown onSwipeLeft'.split(' '), function(name) { IonicModule.directive(name, gestureDirective(name)); }