initial commit

This commit is contained in:
2026-04-27 19:17:22 +02:00
commit b22bfcf15b
65 changed files with 2758 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
//Context-Menü deaktivieren
//Deactivate Context-Menu
document.addEventListener('contextmenu', function(event) {
event.preventDefault();
});
function langRedirect() {
var systemsprache = navigator.language || navigator.userLanguage;
var sprache;
if (systemsprache.startsWith('de')) {
sprache = 'de';
} else {
sprache = 'en';
}
window.location.href = 'lang/' + sprache;
}
langRedirect()