wix-style-react
Version:
wix-style-react
19 lines (16 loc) • 512 B
JavaScript
import deprecationLog from '../../utils/deprecationLog';
deprecationLog(
`Using "Backoffice/Tooltip/CancelAnimationPolyfill.js" is deprecated. Please use the newer polyfills in "testkit/polyfills"`,
);
if (!window.cancelAnimationFrame) {
window.cancelAnimationFrame = (function() {
return (
window.cancelAnimationFrame ||
window.webkitCancelAnimationFrame ||
window.mozCancelAnimationFrame ||
function(callback) {
window.clearTimeout(callback);
}
);
})();
}