Skip to content

Commit

Permalink
Using single-quotes, instead of double-quotes, to
Browse files Browse the repository at this point in the history
match the project's current coding style
  • Loading branch information
Rican7 committed May 15, 2019
1 parent 774badb commit 0c44316
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MultiStreamsMixer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Last time updated: 2019-05-15 7:45:25 PM UTC
// Last time updated: 2019-05-15 7:50:08 PM UTC

// ________________________
// MultiStreamsMixer v1.0.8
Expand Down Expand Up @@ -105,7 +105,7 @@ function MultiStreamsMixer(arrayOfMediaStreams, elementClass) {

// requires: chrome://flags/#enable-experimental-web-platform-features

elementClass = elementClass || "multi-streams-mixer";
elementClass = elementClass || 'multi-streams-mixer';

var videos = [];
var isStopDrawingFrames = false;
Expand Down
2 changes: 1 addition & 1 deletion MultiStreamsMixer.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion MultiStreamsMixer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class MultiStreamsMixer {
gainNode : GainNode;


constructor (_arrayOfMediaStreams, elementClass = "multi-streams-mixer") {
constructor (_arrayOfMediaStreams, elementClass = 'multi-streams-mixer') {
// requires: chrome://flags/#enable-experimental-web-platform-features
this.arrayOfMediaStreams = _arrayOfMediaStreams;
this.elementClass = elementClass;
Expand Down
2 changes: 1 addition & 1 deletion dev/init.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// requires: chrome://flags/#enable-experimental-web-platform-features

elementClass = elementClass || "multi-streams-mixer";
elementClass = elementClass || 'multi-streams-mixer';

var videos = [];
var isStopDrawingFrames = false;
Expand Down

0 comments on commit 0c44316

Please sign in to comment.