34 lines
No EOL
858 B
JavaScript
34 lines
No EOL
858 B
JavaScript
const dark = getCookie("dark") === "true";
|
|
if (dark)
|
|
addStyle("/style/dark.css");
|
|
|
|
$(function () {
|
|
openModals(window.location.hash);
|
|
$('a').on('click', function () {
|
|
openModals($(this).attr('href'));
|
|
});
|
|
|
|
$('.navbar-collapse a').on('click', function () {
|
|
$('.navbar-collapse').collapse('hide');
|
|
});
|
|
|
|
$('#blobheart').on('click', function () {
|
|
$('#navbar-image').attr('src', 'res/heart.jpeg');
|
|
});
|
|
|
|
let mode = $('#dark-mode');
|
|
mode.prop('checked', dark);
|
|
mode.on('click', function () {
|
|
setCookie("dark", $(this).prop('checked'), 365);
|
|
window.location.hash = "";
|
|
location.reload();
|
|
});
|
|
});
|
|
|
|
function openModals(hash) {
|
|
if (hash && hash.startsWith("#")) {
|
|
let modal = $(`${hash}-modal`);
|
|
if (modal.length)
|
|
modal.modal('show');
|
|
}
|
|
} |