Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 32 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default {
// Show and hide
show: Show,
hide: Hide,

// Fade in
fadeIn: FadeIn,

Expand Down Expand Up @@ -206,6 +206,36 @@ export default {
constructor() {
super('wheel');
}
}
},
ontouchcancel: class extends EventListener {
constructor() {
super('touchcancel');
}
},
ontouchend: class extends EventListener {
constructor() {
super('touchend');
}
},
ontouchenter: class extends EventListener {
constructor() {
super('touchenter');
}
},
ontouchleave: class extends EventListener {
constructor() {
super('touchleave');
}
},
ontouchmove: class extends EventListener {
constructor() {
super('touchmove');
}
},
ontouchstart: class extends EventListener {
constructor() {
super('touchstart');
}
},
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, remove ,

}
"use strict";