We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de9e0c commit 70cf7a3Copy full SHA for 70cf7a3
1 file changed
src/gameobjects/Video.js
@@ -368,8 +368,8 @@ Phaser.Video.prototype = {
368
369
try {
370
navigator.getUserMedia(
371
- { "audio": captureAudio, "video": true },
372
- this.getUserMediaSuccess.bind(this),
+ { "audio": captureAudio, "video": true },
+ this.getUserMediaSuccess.bind(this),
373
this.getUserMediaError.bind(this)
374
);
375
}
@@ -417,7 +417,7 @@ Phaser.Video.prototype = {
417
418
var self = this;
419
420
- this.video.onloadeddata = function (e) {
+ this.video.onloadeddata = function () {
421
422
var retry = 10;
423
0 commit comments