mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
broadway: Disable all kinds of viewport scrolling and zooming
This commit is contained in:
parent
e331d17626
commit
d21ac217d3
@ -2460,6 +2460,18 @@ function onMouseWheel(ev)
|
||||
return cancelEvent(ev);
|
||||
}
|
||||
|
||||
function onTouchStart(ev) {
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
function onTouchEnd(ev) {
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
function onTouchMove(ev) {
|
||||
event.preventDefault();
|
||||
}
|
||||
|
||||
function setupDocument(document)
|
||||
{
|
||||
document.oncontextmenu = function () { return false; };
|
||||
@ -2475,6 +2487,9 @@ function setupDocument(document)
|
||||
if (document.addEventListener) {
|
||||
document.addEventListener('DOMMouseScroll', onMouseWheel, false);
|
||||
document.addEventListener('mousewheel', onMouseWheel, false);
|
||||
document.addEventListener('touchstart', onTouchStart, false);
|
||||
document.addEventListener('touchmove', onTouchMove, false);
|
||||
document.addEventListener('touchstart', onTouchEnd, false);
|
||||
} else if (document.attachEvent) {
|
||||
element.attachEvent("onmousewheel", onMouseWheel);
|
||||
}
|
||||
|
@ -2,7 +2,11 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>broadway 2.0</title>
|
||||
<style type="text/css">
|
||||
body { overflow: hidden; }
|
||||
</style>
|
||||
<script type="text/javascript" src="broadway.js"></script>
|
||||
</head>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user