提交 f73f3be6 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

fix(canvas): H5 createNativeEvent handle preventDefault and stopPropagation

上级 6c7955c8
......@@ -46,7 +46,6 @@ export function $nne(
;(res as any).changedTouches = normalizeTouchEvent(evt.changedTouches, top)
}
if (__PLATFORM__ === 'h5') {
wrapperEvent(res, evt)
return (
wrapperH5WxsEvent(
res,
......@@ -89,6 +88,11 @@ export function createNativeEvent(
;(event as any).touches = (evt as TouchEvent).touches
;(event as any).changedTouches = (evt as TouchEvent).changedTouches
}
if (__PLATFORM__ === 'h5') {
wrapperEvent(event, evt)
}
return event
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册