Web/scripts/main.js

21 lines
561 B
JavaScript
Raw Normal View History

2018-12-16 23:39:35 +01:00
$(function () {
let openModals = function (hash) {
2018-07-28 11:22:20 +02:00
if (hash.length > 1) {
if (hash === '#impressum') {
$('#impressum-modal').modal('show');
}
}
}
2018-07-28 11:22:20 +02:00
openModals(window.location.hash);
2018-12-16 23:39:35 +01:00
$('a').on('click', function () {
2018-07-28 11:22:20 +02:00
openModals($(this).attr('href'));
});
2018-12-16 23:39:35 +01:00
$('.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 () {
$('#navbar-image').attr('src', 'res/heart.png');
});
2018-07-24 22:45:53 +02:00
});