mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Use the same requestAnimationFrame as confetti
This commit is contained in:
parent
ec92be4ec4
commit
4fea266003
1 changed files with 1 additions and 4 deletions
|
@ -67,10 +67,7 @@ export default class Fireworks implements ICanvasEffect {
|
||||||
}
|
}
|
||||||
|
|
||||||
private context: CanvasRenderingContext2D | null = null;
|
private context: CanvasRenderingContext2D | null = null;
|
||||||
private supportsAnimationFrame = window.requestAnimationFrame ||
|
private supportsAnimationFrame = window.requestAnimationFrame;
|
||||||
function(callback) {
|
|
||||||
window.setTimeout(callback, 1000/60);
|
|
||||||
};
|
|
||||||
private particles: Array<FireworksParticle> = [];
|
private particles: Array<FireworksParticle> = [];
|
||||||
public isRunning: boolean;
|
public isRunning: boolean;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue