Merge pull request #140 from jr-k/develop

Release v2.4.2
This commit is contained in:
JRK 2024-08-19 11:13:51 +02:00 committed by GitHub
commit 258abb3bf5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
2.4.1
2.4.2

View File

@ -193,7 +193,7 @@
}
const getEmptySlide = function() {
return Array.from(document.getElementsByClassName('slide-loop')).filter(slide => slide.innerHTML.replaceAll(/\s/g,'') === '')[0];
return Array.from(document.getElementsByClassName('slide-loop')).filter(slide => slide.innerHTML.replace(/\s/g,'') === '')[0];
};
const refreshSlidesOrder = function() {