mirror of
https://github.com/DioxusLabs/dioxus
synced 2025-02-19 23:28:27 +00:00
Merge pull request #1602 from ealmloff/fix-scroll-web
This commit is contained in:
commit
a3e6d0adca
1 changed files with 1 additions and 1 deletions
|
@ -294,7 +294,7 @@ pub fn virtual_event_from_websys_event(event: web_sys::Event, target: Element) -
|
|||
"select" => Rc::new(SelectionData {}),
|
||||
"touchcancel" | "touchend" | "touchmove" | "touchstart" => Rc::new(TouchData::from(event)),
|
||||
|
||||
"scroll" => Rc::new(()),
|
||||
"scroll" => Rc::new(ScrollData {}),
|
||||
"wheel" => Rc::new(WheelData::from(event)),
|
||||
"animationstart" | "animationend" | "animationiteration" => {
|
||||
Rc::new(AnimationData::from(event))
|
||||
|
|
Loading…
Add table
Reference in a new issue