Path : /var/www/html/master288-bk/public/sweetalert2/src/utils/dom/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/html/master288-bk/public/sweetalert2/src/utils/dom/animationEndEvent.js |
import { isNodeEnv } from '../isNodeEnv.js' export const animationEndEvent = (() => { // Prevent run in Node env /* istanbul ignore if */ if (isNodeEnv()) { return false } const testEl = document.createElement('div') const transEndEventNames = { WebkitAnimation: 'webkitAnimationEnd', OAnimation: 'oAnimationEnd oanimationend', animation: 'animationend' } for (const i in transEndEventNames) { if (Object.prototype.hasOwnProperty.call(transEndEventNames, i) && typeof testEl.style[i] !== 'undefined') { return transEndEventNames[i] } } return false })()