Я хочу использовать этот код (от https://dev.to/li/how-to-requestpermission-for-devicemotion-and-deviceorientation-events-in-ios-13-46g2):
DeviceOrientationEvent.requestPermission()
.then(response => {
if (response == 'granted') {
window.addEventListener('deviceorientation', (e) => {
// do something with e
})
}
})
.catch(console.error)
На iPhone 4s с Safari iOS9, строка:
.then(response => {
выдает ошибку «Неожиданный токен»:
SyntaxError: Unexpected token '>'
На моем Ma c и на iPad iOS 11, нет проблем.
Может кто-нибудь объяснить, почему?
Спасибо.