From 472e4b85a981a7073bda58d66fd5cd0d898275e2 Mon Sep 17 00:00:00 2001 From: "vincent@cubedesigners.com" Date: Wed, 29 Jun 2022 10:27:06 +0000 Subject: [PATCH] wait #5332 @0:20 --- inc/ws/Util/html5/master/class.ws.html5.links.php | 6 ++++++ 1 file changed, 6 insertions(+) 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; } -- 2.39.5