summaryrefslogtreecommitdiffstats
path: root/src/dist/index.html
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-30 20:14:04 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-30 20:14:04 +0200
commit8dc2dfa4c9609342706d7564e4c0a61085b5c8f9 (patch)
treefef9daa019861565f4ae3d1af216c30daf560781 /src/dist/index.html
parentfeat(src/dead-trees): Add my Facharbeit in chemistry (diff)
downloadb-peetz.de-8dc2dfa4c9609342706d7564e4c0a61085b5c8f9.zip
fix(src/dist): Remove the minified js code
Diffstat (limited to 'src/dist/index.html')
-rw-r--r--src/dist/index.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/dist/index.html b/src/dist/index.html
deleted file mode 100644
index f6a0294..0000000
--- a/src/dist/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!doctype html>
-<html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta name="viewport" content="width=device-width" />
- <title>Cheap web cam</title>
- </head>
- <body>
- <noscript>
- This page contains web assembly and Javascript content, please enable
- Javascript in your browser.
- </noscript>
-
- <div class="content">
- <div class="controls">
- <button class="btn btn-play" title="Start video stream"></button>
- <button class="btn btn-pause" title="Pause video stream"></button>
- <button class="btn btn-shot active" title="Take photo"></button>
- <button class="btn btn-log-del" title="Clear the log"></button>
- <button class="btn btn-log-hide non-active" title="Show the log"></button>
- <button
- class="btn btn-confirm"
- title="Confirm the image, and process it"></button>
-
- <select name="" id="stream-input-select">
- <option value="">Select camera</option>
- </select>
- </div>
-
- <div class="output">
- <img
- id="photo"
- class="overlay"
- alt="The screen capture will appear in this box." />
- <canvas id="canvas" class="overlay"> </canvas>
- <video id="video" class="overlay">Video stream not available.</video>
- </div>
- </div>
-
- <pre id="console" class="active" style="display: None;">Log entries:</pre>
-
- <script src="main.js"></script>
- </body>
-</html>
-<!-- vim: ts=2 -->