fixing reveal pres not showing on first slide
This commit is contained in:
parent
e07664e9c5
commit
4685c9eb70
2 changed files with 30 additions and 1 deletions
|
@ -379,8 +379,10 @@ FocusScope {
|
|||
keyHandler.forceActiveFocus();
|
||||
console.log(currentServiceItem);
|
||||
console.log(totalSlides);
|
||||
console.log(imageBackground);
|
||||
const nextSlideIdx = currentSlide + 1;
|
||||
if (nextSlideIdx > totalSlides || nextSlideIdx < 0)
|
||||
if (!SlideObject.imageBackground.endsWith(".html") &&
|
||||
(nextSlideIdx > totalSlides || nextSlideIdx < 0))
|
||||
return;
|
||||
console.log("currentServiceItem " + currentServiceItem);
|
||||
console.log("currentSlide " + currentSlide);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue