Compare commits
2 Commits
1c62f2783c
...
9e90823858
| Author | SHA1 | Date | |
|---|---|---|---|
| 9e90823858 | |||
| 269e62b5fb |
@@ -74,12 +74,14 @@
|
||||
}
|
||||
},
|
||||
async created () {
|
||||
/*
|
||||
document.addEventListener('wheel', event => {
|
||||
event.preventDefault()
|
||||
}, {passive: false})
|
||||
document.addEventListener('touchmove', event => {
|
||||
event.preventDefault()
|
||||
}, {passive: false})
|
||||
*/
|
||||
if (!window.cordova) {
|
||||
const confText = await fetch('./conf/conf.yaml')
|
||||
.then((mod) => { return mod.text() })
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
<meta name="msapplication-tap-highlight" content="no">
|
||||
<title>ALVINN</title>
|
||||
<% if (TARGET === 'web') { %>
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png">
|
||||
<link rel="icon" href="icons/favicon.png">
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<f7-page name="detect" :id="detectorName + '-detect-page'">
|
||||
<f7-page name="detect" :id="detectorName + '-detect-page'" @wheel="(e = $event) => e.preventDefault()" @touchmove="(e = $event) => e.preventDefault()">
|
||||
<!-- Top Navbar -->
|
||||
<f7-navbar :sliding="false" :back-link="true" back-link-url="/" back-link-force>
|
||||
<f7-nav-title sliding>{{ regions[activeRegion] }}</f7-nav-title>
|
||||
|
||||
Reference in New Issue
Block a user