Prevent zooming and scrolling via touch screen
This commit is contained in:
parent
cae376ae13
commit
53fbc04b1f
@ -3,6 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
|
<meta name="viewport" content="initial-scale=1, user-scalable=no" />
|
||||||
<title>Tool Reservations</title>
|
<title>Tool Reservations</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -101,4 +101,7 @@ function main() {
|
|||||||
window.setInterval(refresh, 5 * 60 * 1000);
|
window.setInterval(refresh, 5 * 60 * 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
document.body.addEventListener('touchmove', (e) => e.preventDefault(), {
|
||||||
|
passive: false,
|
||||||
|
});
|
||||||
main();
|
main();
|
||||||
|
Loading…
Reference in New Issue
Block a user