events.touch.js 1.3 KB

123456789101112131415161718192021222324252627
  1. Lungo.Events.init({
  2. 'tap section#touchevents [data-event=tap]': App.eventConsole,
  3. 'doubleTap section#touchevents [data-event=doubleTap]': App.eventConsole,
  4. 'hold section#touchevents [data-event=hold]': App.eventConsole,
  5. 'swipe section#touchevents [data-event=swipe]': App.eventConsole,
  6. 'swipeLeft section#touchevents [data-event=swipeLeft]': App.eventConsole,
  7. 'swipeUp section#touchevents [data-event=swipeUp]': App.eventConsole,
  8. 'swipeRight section#touchevents [data-event=swipeRight]': App.eventConsole,
  9. 'swipeDown section#touchevents [data-event=swipeDown]': App.eventConsole,
  10. 'swiping section#touchevents [data-event=swiping]': App.eventConsole,
  11. 'rotate section#touchevents [data-event=rotate]': App.eventConsole,
  12. 'rotateLeft section#touchevents [data-event=rotateLeft]': App.eventConsole,
  13. 'rotateRight section#touchevents [data-event=rotateRight]': App.eventConsole,
  14. 'rotating section#touchevents [data-event=rotating]': App.eventConsole,
  15. 'pinch section#touchevents [data-event=pinch]': App.eventConsole,
  16. 'pinchIn section#touchevents [data-event=pinchIn]': App.eventConsole,
  17. 'pinchOut section#touchevents [data-event=pinchOut]': App.eventConsole,
  18. 'pinching section#touchevents [data-event=pinching]': App.eventConsole,
  19. 'drag section#touchevents [data-event=drag]': App.eventConsole
  20. });