From: vincent@cubedesigners.com Date: Wed, 29 Jun 2022 10:27:06 +0000 (+0000) Subject: wait #5332 @0:20 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=472e4b85a981a7073bda58d66fd5cd0d898275e2;p=cubeextranet.git wait #5332 @0:20 --- diff --git a/inc/ws/Util/html5/master/class.ws.html5.links.php b/inc/ws/Util/html5/master/class.ws.html5.links.php index 0b79db4ef..2d1af34d6 100644 --- a/inc/ws/Util/html5/master/class.ws.html5.links.php +++ b/inc/ws/Util/html5/master/class.ws.html5.links.php @@ -699,6 +699,9 @@ class wsHTML5Link if (isset($animation['type']) && in_array($animation['type'], $hiddenAnimations)) { return true; } + if ($animation['type'] === 'scale' && $animation['scale'] == 0) { + return true; + } } return false; } @@ -710,6 +713,9 @@ class wsHTML5Link if (isset($animation['type']) && in_array($animation['type'], $hiddenAnimations)) { return true; } + if ($animation['type'] === 'scalefrom' && $animation['scale'] == 0) { + return true; + } } return false; }