Skip to content

Commit 7cd89ee

Browse files
committed
jshint fixes.
1 parent 55fa289 commit 7cd89ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/gameobjects/Video.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ Phaser.Video.prototype = {
274274

275275
var _streamError = function(e) {
276276
_this.onError.dispatch(_this, e);
277-
}
277+
};
278278

279279
navigator.getUserMedia({ audio: captureAudio, video: true }, _streamStart, _streamError);
280280

@@ -316,7 +316,7 @@ Phaser.Video.prototype = {
316316

317317
var change = false;
318318

319-
if (typeof width === 'undefined' || width === null) { width = this.video.videoWidth; change = true }
319+
if (typeof width === 'undefined' || width === null) { width = this.video.videoWidth; change = true; }
320320
if (typeof height === 'undefined' || height === null) { height = this.video.videoHeight; }
321321

322322
// if (change)

0 commit comments

Comments
 (0)