Disable pinch events on safari main document
All checks were successful
Build Dev PWA / Build-PWA (push) Successful in 37s
All checks were successful
Build Dev PWA / Build-PWA (push) Successful in 37s
Signed-off-by: Justin Georgi <justin.georgi@gmail.com>
This commit is contained in:
@@ -74,6 +74,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
async created () {
|
async created () {
|
||||||
|
document.addEventListener('wheel', event => {
|
||||||
|
event.preventDefault()
|
||||||
|
}, {passive: false})
|
||||||
|
document.addEventListener('touchmove', event => {
|
||||||
|
event.preventDefault()
|
||||||
|
}, {passive: false})
|
||||||
if (!window.cordova) {
|
if (!window.cordova) {
|
||||||
const confText = await fetch('./conf/conf.yaml')
|
const confText = await fetch('./conf/conf.yaml')
|
||||||
.then((mod) => { return mod.text() })
|
.then((mod) => { return mod.text() })
|
||||||
|
|||||||
Reference in New Issue
Block a user