From 2abd6e7d5cf42d5cd800af8d9c89adf2c2a9bac2 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Thu, 2 Mar 2023 13:00:58 +0000 Subject: [PATCH] feat: set more interesting page titles --- index.html | 2 +- js/main.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index a0d84c8..d5d77db 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Watch + Select video diff --git a/js/main.js b/js/main.js index 72196bc..8e24c64 100644 --- a/js/main.js +++ b/js/main.js @@ -88,6 +88,8 @@ if (query !== null) { video.controls = true; video.crossOrigin = 'anonymous'; + document.title = 'Watching :D'; + const sourceEle = document.createElement('source'); sourceEle.src = source; sourceEle.type = sourceType;