[w3c/screen-orientation] screen-orientation.change events should be cancellable (#92)

userland code should be given the chance to ignore the event and prevent the orientation from changing.

```
function onOrientationChange(evt) {
    if(evt.target.type !== 'landscape-primary') {
        evt.preventDefault();
    }
}
```

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/screen-orientation/issues/92

Received on Friday, 15 July 2016 00:31:27 UTC