Skip to content

Commit

Permalink
Fix a grammar error for MultiStreamsMixer.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
gerryhjs committed Feb 19, 2020
1 parent 8224f92 commit 98a7863
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MultiStreamsMixer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class MultiStreamsMixer {
this.context = this.canvas.getContext('2d');
this.canvas.style = 'opacity:0;position:absolute;z-index:-1;top: -100000000;left:-1000000000; margin-top:-1000000000;margin-left:-1000000000;';
this.canvas.className = this.elementClass;
(document.body || document.documentElement).appendChild(canvas);
(document.body || document.documentElement).appendChild(this.canvas);
this.disableLogs = false;
this.frameInterval = 10;
this.width = 360;
Expand Down

0 comments on commit 98a7863

Please sign in to comment.