49 lines
878 B
Handlebars
49 lines
878 B
Handlebars
<!DOCTYPE html>
|
|
<!-- empty -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Empty</title>
|
|
<style>
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background-color: transparent;
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
function play() { emptyMessage('play') }
|
|
function stop() { emptyMessage('stop') }
|
|
function invoke() { emptyMessage('invoke') }
|
|
function update() { emptyMessage('update') }
|
|
function data() { emptyMessage('data') }
|
|
function preview() { emptyMessage('preview') }
|
|
function emptyMessage(cmd) {
|
|
// console.log('Empty layer received command "' + cmd + '", which is ignored');
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<!-- nothing here -->
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|