From a03c056e8831aaf2cfe86ff4f93afe22701d076a Mon Sep 17 00:00:00 2001 From: seo Date: Mon, 29 Jun 2026 05:40:44 +0900 Subject: [PATCH] =?UTF-8?q?=EB=82=98=EC=9D=98=20=EC=B0=BE=EA=B8=B0=20?= =?UTF-8?q?=EC=9E=90=EB=8F=99=20=EC=83=9D=EC=84=B1=20=ED=97=A4=EB=8D=94=20?= =?UTF-8?q?=EC=98=A4=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- js/main.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/js/main.js b/js/main.js index 6f01cbb..d670512 100644 --- a/js/main.js +++ b/js/main.js @@ -475,6 +475,7 @@ function ensureFindMyDeviceShell() {
+
Language Toggle
@@ -969,8 +970,10 @@ function applyLanguage(langCode) { labelPwa: t.pwa, }; - document.getElementById('blogBackLink').innerHTML = ` ${t.blog}`; - document.querySelector('.headerTitle').textContent = t.title; + const blogBackLink = document.getElementById('blogBackLink'); + if (blogBackLink) blogBackLink.innerHTML = ` ${t.blog}`; + const headerTitle = document.querySelector('.headerTitle'); + if (headerTitle) headerTitle.textContent = t.title; for (const id in titleMap) { const el = document.getElementById(id);