79439445

Date: 2025-02-14 13:01:33
Score: 6 🚩
Natty:
Report link

We had the same issue with polymer / neon-animation. But since we had issues with web-animations-js dependency we are trying out our own polyfill for play() based on KeyframeEffect documentation

(function () {
  if (document.timeline && !(document.timeline as any).play) {
    (document.timeline as any).play = (effect: KeyframeEffect) => {
      const animation = new Animation(effect, document.timeline);
      animation.play();
      return animation;
    };
  }
})();

under the assumption that neon-animation is the only dependency relying on timeline.play() and that the native web animations API is available, this seems to work. Does anyone have any ideas why this should not work? Or what side effects this can cause?

Reasons:
  • Blacklisted phrase (1): any ideas
  • RegEx Blacklisted phrase (3): Does anyone have any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: cmanthey