Open soe-j opened 2 years ago
Hi.
I can not use v-click-outside well on Internet Explorer 11.
v-click-outside
It adds touchstart events on IE11. IE11 doesn't support it. https://developer.mozilla.org/en-US/docs/Web/API/Document/touchstart_event
touchstart
navigator.msMaxTouchPoints is grater than 0 on IE11. navigator.MaxTouchPoints is the same.
navigator.msMaxTouchPoints
navigator.MaxTouchPoints
I think it is enough to judge only whether there is ontouchstart. https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchstart
ontouchstart
Hi.
I can not use
v-click-outside
well on Internet Explorer 11.It adds
touchstart
events on IE11. IE11 doesn't support it. https://developer.mozilla.org/en-US/docs/Web/API/Document/touchstart_eventnavigator.msMaxTouchPoints
is grater than 0 on IE11.navigator.MaxTouchPoints
is the same.I think it is enough to judge only whether there is
ontouchstart
. https://developer.mozilla.org/en-US/docs/Web/API/GlobalEventHandlers/ontouchstart