@luceosports/play-rendering 1.9.27 → 1.9.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luceosports/play-rendering",
3
- "version": "1.9.27",
3
+ "version": "1.9.28",
4
4
  "description": "",
5
5
  "main": "dist/play-rendering.js",
6
6
  "scripts": {
@@ -109,7 +109,10 @@ class Animation {
109
109
  if (this.globalProgress >= this.linePhaseIntervalMaxRounded) {
110
110
  this.reset();
111
111
  cancelAnimationFrame(this.loopId);
112
- return finishCallback();
112
+ setTimeout(() => {
113
+ finishCallback();
114
+ }, 1000);
115
+ return;
113
116
  }
114
117
 
115
118
  progressCallback(this.globalProgress);