21 lines
No EOL
561 B
JavaScript
21 lines
No EOL
561 B
JavaScript
$(function () {
|
|
let openModals = function (hash) {
|
|
if (hash.length > 1) {
|
|
if (hash === '#impressum') {
|
|
$('#impressum-modal').modal('show');
|
|
}
|
|
}
|
|
}
|
|
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.png');
|
|
});
|
|
}); |