-
Notifications
You must be signed in to change notification settings - Fork 24
touch
larukedi edited this page Dec 15, 2014
·
1 revision
Usage: $l.dom.setEvent(element, eventName, fnc)
var movingObject = $l.id('moving-object');
$l.dom.setEvent(
movingObject,
'tap',
function(event) {
console.log('tap', event);
}
);
$l.dom.setEvent(
movingObject,
'dbltap',
function(event) {
console.log('dbltap', event);
}
);
$l.dom.setEvent(
movingObject,
'longtap',
function(event) {
console.log('longtap', event);
}
);