36 lines
975 B
HTML
36 lines
975 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>vtm-gdx</title>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<style>
|
|
canvas {
|
|
cursor: default;
|
|
outline: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div align="center" id="embed-org.oscim.gdx.GwtDefinition"></div>
|
|
<script type="text/javascript" src="org.oscim.gdx.GwtDefinition/org.oscim.gdx.GwtDefinition.nocache.js"></script>
|
|
</body>
|
|
|
|
<script>
|
|
function handleMouseDown(evt) {
|
|
evt.preventDefault();
|
|
evt.stopPropagation();
|
|
evt.target.style.cursor = 'default';
|
|
}
|
|
|
|
function handleMouseUp(evt) {
|
|
evt.preventDefault();
|
|
evt.stopPropagation();
|
|
evt.target.style.cursor = '';
|
|
}
|
|
|
|
document.getElementById('embed-org.oscim.gdx.GwtDefinition').addEventListener('mousedown', handleMouseDown, false);
|
|
document.getElementById('embed-org.oscim.gdx.GwtDefinition').addEventListener('mouseup', handleMouseUp, false);
|
|
</script>
|
|
</html>
|