Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 392 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 392 Bytes

faketouches.js

Library to send fake touchevents. Used for testing Hammer.js.

Usage

Fake a tap on the screen

var faker = new FakeTouches(element);
faker.setTouchType(FakeTouches.POINTER_TOUCH_EVENTS);

faker.setTouches([[100,100]]);
faker.triggerStart();
faker.triggerEnd();

Fake a gesture

faker.triggerGesture('Drag', function(){ 
	//callback
})