Unable to preventDefault inside passive event listener

前端 未结 6 913
终归单人心
终归单人心 2020-11-29 06:13

I\'m using Framework7 sortable list and it works well, just that it doesn\'t trigger an event when the list is changed.

So I\'m trying a few built-in events:

<
6条回答
  •  萌比男神i
    2020-11-29 07:04

    To still be able to scroll this worked for me

    if (e.changedTouches.length > 1) e.preventDefault();
    

提交回复
热议问题