Web/main/scripts/main.js

28 lines
843 B
JavaScript
Raw Normal View History

const darkCookie = getCookie("dark");
const dark = darkCookie == undefined ? window.matchMedia("(prefers-color-scheme: dark)").matches : darkCookie == "true";
if (dark)
addStyle("/style/dark.css");
2018-12-30 02:26:56 +01:00
2021-10-11 14:07:57 +02:00
// redirect legacy anchors
2021-10-11 14:17:29 +02:00
if (/^#privacy\/?$/.test(location.hash))
2021-10-11 14:07:57 +02:00
location.href = "/privacy";
2021-10-11 14:17:29 +02:00
if (/^#impressum\/?$/.test(location.hash))
2021-10-11 14:07:57 +02:00
location.href = "/impressum";
2018-12-16 23:39:35 +01:00
$(function () {
$('.navbar-collapse a').on('click', function () {
2018-07-25 12:50:47 +02:00
$('.navbar-collapse').collapse('hide');
2018-07-24 22:45:53 +02:00
});
2018-12-16 23:39:35 +01:00
$('#blobheart').on('click', function () {
2021-03-19 04:23:04 +01:00
$('#navbar-image').attr('src', 'res/heart.jpeg');
});
2018-12-30 02:26:56 +01:00
let mode = $('#dark-mode');
mode.prop('checked', dark);
mode.on('click', function () {
setCookie("dark", $(this).prop('checked'), 365);
2021-10-11 14:07:57 +02:00
location.hash = "";
location.reload();
});
});