Skip to content

Commit

Permalink
Fix touch events (yewstack#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarry authored and llebout committed Jan 20, 2020
1 parent 61fe836 commit 5df67c0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions crates/macro/src/html_tree/html_tag/tag_attributes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ lazy_static! {
m.insert("onmousewheel", "MouseWheelEvent");
m.insert("onmouseover", "MouseOverEvent");
m.insert("onmouseup", "MouseUpEvent");
m.insert("touchcancel", "TouchCancel");
m.insert("touchend", "TouchEnd");
m.insert("touchenter", "TouchEnter");
m.insert("touchmove", "TouchMove");
m.insert("touchstart", "TouchStart");
m.insert("ontouchcancel", "TouchCancel");
m.insert("ontouchend", "TouchEnd");
m.insert("ontouchenter", "TouchEnter");
m.insert("ontouchmove", "TouchMove");
m.insert("ontouchstart", "TouchStart");
m.insert("ongotpointercapture", "GotPointerCaptureEvent");
m.insert("onlostpointercapture", "LostPointerCaptureEvent");
m.insert("onpointercancel", "PointerCancelEvent");
Expand Down

0 comments on commit 5df67c0

Please sign in to comment.