Re: [pointerevents] Add feature detection section

Okay, just to clear some things.
Imagine my website has support of both mouse and touch events. Now I 
wan't to add Pointer Events (v2) support because it's better, simpler,
 etc. So I am doing this:

```js
if (window.PointerEvent) {
  initNewInputSystem();
} else {
  initOldInputSystem();
}
```

Question is: will my Pointer Events v2 implementation be _fully_ 
compatible with old Pointer Events v1 (IE11/earl Edge) without any 
hacks/changes? 

-- 
GitHub Notification of comment by NekR
Please view or discuss this issue at 
https://github.com/w3c/pointerevents/issues/94#issuecomment-228606143 
using your GitHub account

Received on Sunday, 26 June 2016 15:16:01 UTC