Merge branch 'master' of git.stuve-bamberg.de:ckremitzl/onpoint

This commit is contained in:
Knoch 2020-06-10 17:13:01 +02:00
commit ed30a3af51

View File

@ -1,4 +1,5 @@
window.addEventListener('load', init);
window.addEventListener('resize', reactToResizing);
let slides;
let currentSlide;
@ -365,4 +366,8 @@ function hideTopicList() {
if (topicList.style.visibility === 'visible') {
topicList.style.visibility = 'hidden';
}
}
function reactToResizing() {
goToSlide(currentSlide);
}