@hkdigital/lib-core 0.5.61 → 0.5.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -291,6 +291,8 @@ export class PresenterState {
|
|
|
291
291
|
// Can't transition if we're already transitioning to this slide
|
|
292
292
|
if (slide.name === this.nextSlideName) {
|
|
293
293
|
console.debug(`gotoSlide already transitioning to slide [${slide.name}]`);
|
|
294
|
+
// Clear any pending slide since we're already going where the user wants
|
|
295
|
+
this.pendingSlideName = null;
|
|
294
296
|
return;
|
|
295
297
|
}
|
|
296
298
|
|