diff options
author | elioat <elioat@tilde.institute> | 2024-06-30 18:44:30 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-06-30 18:44:30 -0400 |
commit | 94ef47906aa9a3587efe2f88b508ebbe098ef342 (patch) | |
tree | 89e03fa48692ae5eaaf914da972e3b160912a43d | |
parent | f29758cfe8e233fa9d011f3eb7083123bfd40cd5 (diff) | |
download | tour-94ef47906aa9a3587efe2f88b508ebbe098ef342.tar.gz |
*
-rw-r--r-- | js/pico-cam/favicon.ico | bin | 0 -> 6825 bytes | |||
-rw-r--r-- | js/pico-cam/index.html | 7 | ||||
-rw-r--r-- | js/pico-cam/pico-cam.js (renamed from js/pico-cam/video.js) | 0 | ||||
-rw-r--r-- | js/pico-cam/service-worker.js | 2 |
4 files changed, 7 insertions, 2 deletions
diff --git a/js/pico-cam/favicon.ico b/js/pico-cam/favicon.ico new file mode 100644 index 0000000..1783361 --- /dev/null +++ b/js/pico-cam/favicon.ico Binary files differdiff --git a/js/pico-cam/index.html b/js/pico-cam/index.html index 7b8798a..c12f4da 100644 --- a/js/pico-cam/index.html +++ b/js/pico-cam/index.html @@ -4,6 +4,11 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Pico Cam</title> + <!-- add favicon --> + <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> + <link rel="icon" href="favicon.ico" type="image/x-icon"> + <meta name="theme-color" content="#EEE1C6"> + <meta name="description" content="For those times when you need a Gameboy camera but only have a phone."> <style> body { background-color: beige; @@ -77,7 +82,7 @@ <video id="webcam" autoplay playsinline style="display:none;"></video> <canvas id="ditheredOutput"></canvas> </div> - <script src="video.js"></script> + <script src="pico-cam.js"></script> <script> // Check if Service Workers are supported if ('serviceWorker' in navigator) { diff --git a/js/pico-cam/video.js b/js/pico-cam/pico-cam.js index f51179e..f51179e 100644 --- a/js/pico-cam/video.js +++ b/js/pico-cam/pico-cam.js diff --git a/js/pico-cam/service-worker.js b/js/pico-cam/service-worker.js index 75027ed..a564fad 100644 --- a/js/pico-cam/service-worker.js +++ b/js/pico-cam/service-worker.js @@ -2,7 +2,7 @@ var CACHE_NAME = 'pico-cam-v1'; var urlsToCache = [ '/', '/index.html', - '/video.js' + '/pico-cam.js' ]; self.addEventListener('install', function(event) { |