Fix hover-out regression (#7785)

This commit is contained in:
Jukka Kurkela 2020-09-11 17:46:25 +03:00 committed by GitHub
parent 9b00ff3e1e
commit 9427398b3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ export default class Animations {
// Going from distinct options to shared options: // Going from distinct options to shared options:
// After all animations are done, assing the shared options object to the element // After all animations are done, assing the shared options object to the element
// So any new updates to the shared options are observed // So any new updates to the shared options are observed
awaitAll(target.$animations, newOptions).then(() => { awaitAll(target.options.$animations, newOptions).then(() => {
target.options = newOptions; target.options = newOptions;
}); });
} }