From 8b867f72cb35c518de5ee525c264f1feb76d7949 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Wed, 10 Sep 2025 16:28:01 +0200 Subject: [PATCH] wait #7489 @0.5 --- js/libs/fluidbook/fluidbook.elasticslide.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/libs/fluidbook/fluidbook.elasticslide.js b/js/libs/fluidbook/fluidbook.elasticslide.js index 8989e365..3e8e249f 100644 --- a/js/libs/fluidbook/fluidbook.elasticslide.js +++ b/js/libs/fluidbook/fluidbook.elasticslide.js @@ -5,7 +5,7 @@ function FluidbookElasticSlide(fluidbook) { this.ignoreScroll = false; this.scrollingPage = null; this.currentlyActive = false; - this.helpNeeded = true; + this.helpNeeded = this.fluidbook.cache.get('elasticslide.helpNeeded', "1") === "1"; this.init(); } @@ -171,6 +171,7 @@ FluidbookElasticSlide.prototype = { }, showHelp: function () { + this.fluidbook.cache.get('elasticslide.helpNeeded', "0"); let $this = this; this.helpNeeded = false; clearTimeout(this.helpTimeout); -- 2.39.5