From 9427398b3c1b4aa09a3d72c8523d8b6d77a0d9d2 Mon Sep 17 00:00:00 2001 From: Jukka Kurkela Date: Fri, 11 Sep 2020 17:46:25 +0300 Subject: [PATCH] Fix hover-out regression (#7785) --- src/core/core.animations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core.animations.js b/src/core/core.animations.js index 36549aa9a..1a4e9b0ca 100644 --- a/src/core/core.animations.js +++ b/src/core/core.animations.js @@ -129,7 +129,7 @@ export default class Animations { // Going from distinct options to shared options: // After all animations are done, assing the shared options object to the element // So any new updates to the shared options are observed - awaitAll(target.$animations, newOptions).then(() => { + awaitAll(target.options.$animations, newOptions).then(() => { target.options = newOptions; }); } -- 2.47.3