Merge branch 'master' into release

This commit is contained in:
Knoch 2020-03-10 17:38:50 +01:00
commit f9ab875457

View File

@ -140,7 +140,9 @@ function createTopicList() {
topicList.style.width = '800px'; topicList.style.width = '800px';
topicList.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.3)'; topicList.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.3)';
topicList.style.maxHeight = 'calc(100vh - 8rem)'; topicList.style.maxHeight = 'calc(100vh - 8rem)';
topicList.style.boxSizing = 'border-box';
topicList.style.visibility = 'hidden'; topicList.style.visibility = 'hidden';
topicList.style.overflowY = 'scroll';
topicList.querySelectorAll('a').forEach(link => { topicList.querySelectorAll('a').forEach(link => {
link.addEventListener('click', e => topicList.style.visibility = 'hidden'); link.addEventListener('click', e => topicList.style.visibility = 'hidden');