Merge pull request #460 from jvanbruegge/fix-animation-end

Fix element removal on transition end in Firefox70
pull/464/head
Simon Friis Vindum 5 years ago committed by GitHub
commit 6e86a5af5d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,7 +69,7 @@ function applyRemoveStyle(vnode: VNode, rm: () => void): void {
return;
}
if(!reflowForced) {
getComputedStyle(document.body).transform;
(vnode.elm as any).offsetLeft;
reflowForced = true;
}
var name: string, elm = vnode.elm, i = 0, compStyle: CSSStyleDeclaration,

Loading…
Cancel
Save