1
0
mirror of https://github.com/koloml/philomena-tagging-assistant.git synced 2026-05-09 15:12:21 +00:00

Renaming all content scripts to TS

This commit is contained in:
2025-02-21 03:04:11 +04:00
parent 878f3eb878
commit 3a010f9303
16 changed files with 4 additions and 4 deletions

7
src/content/header.ts Normal file
View File

@@ -0,0 +1,7 @@
import { initializeSiteHeader } from "$lib/components/SiteHeaderWrapper";
const siteHeader = document.querySelector('.header');
if (siteHeader) {
initializeSiteHeader(siteHeader);
}