From 3f3ceb2408c4f9c13418802338ec7bc3fee4c42c Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 17 Dec 2018 16:54:31 +0100 Subject: [PATCH] fix #2243 @0:20 --- js/libs/fluidbook/fluidbook.3dflip.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/js/libs/fluidbook/fluidbook.3dflip.js b/js/libs/fluidbook/fluidbook.3dflip.js index 0d3cd4b7..41bc5926 100644 --- a/js/libs/fluidbook/fluidbook.3dflip.js +++ b/js/libs/fluidbook/fluidbook.3dflip.js @@ -569,13 +569,14 @@ Fluidbook3DFlip.prototype = { this.progressAnimation(0); this.animate(false); + var delay = this.fluidbook.support.iOS ? 0.05 : 0; + TweenMax.fromTo(this, this.animationTime * timeScale, - { - progressAnimation: 0, - }, + {progressAnimation: 0,}, { progressAnimation: 1, ease: Power0.easeIn, + delay: delay, onComplete: function () { $this.turnRunning = false; this.tlname = ''; -- 2.39.5