fix(gesture): fix onSwipeDown

Closes #1810
This commit is contained in:
Adam Bradley
2014-07-22 12:43:57 -05:00
parent 3d0a46efe8
commit 2dce7a74f7

View File

@@ -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));
}