Re: [deviceorientation] Add API for requesting permission to receive device motion / orientation events (#57)

You need both `"gyroscope"` and `"accelerometer"` for both so it would look like:

```js
Promise.all([navigation.permissions.request({ name: “accelerometer” }),
             navigation.permissions.request({ name: “gyroscope” })])
    .then(results => {
      ...
    });
```

-- 
GitHub Notification of comment by reillyeon
Please view or discuss this issue at https://github.com/w3c/deviceorientation/issues/57#issuecomment-447129020 using your GitHub account

Received on Thursday, 13 December 2018 21:35:41 UTC