events.touch.js 504 B

1234567891011121314
  1. ["singleTap", "doubleTap", "hold",
  2. "swipe", "-swiping", "swipeLeft", "swipeRight", "swipeUp", "swipeDown",
  3. "rotate", "rotateLeft", "rotateRight",
  4. "pinch", "pinchIn", "pinchOut",
  5. "drag", "dragLeft", "dragRight", "dragUp", "dragDown"].forEach(function(type) {
  6. $$("section#touchevents #gestures").on(type, function(event) {
  7. $$(this).siblings('#console').append(' | ' + type);
  8. });
  9. });
  10. $$("[data-action=clean_console]").tap(function(event) {
  11. $$('#console').html("");
  12. });