forgeplus-react/node_modules/rsuite/es/Animation/getAnimationEnd.js

9 lines
196 B
JavaScript

export default function getAnimationEnd() {
var style = document.createElement('div').style;
if ('webkitAnimation' in style) {
return 'webkitAnimationEnd';
}
return 'animationend';
}