Skip to content

Commit b29d2b8

Browse files
committed
Missing semicolons added
1 parent 242e3cc commit b29d2b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/loader/Loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1466,7 +1466,7 @@ Phaser.Loader.prototype = {
14661466
file.loaded = true;
14671467

14681468
var loadNext = true;
1469-
var _this = this
1469+
var _this = this;
14701470

14711471
switch (file.type)
14721472
{
@@ -1734,7 +1734,7 @@ Phaser.Loader.prototype = {
17341734
console.warn('Invalid XML Response Type', this._fileList[index]);
17351735
console.warn(this._ajax);
17361736
}
1737-
data = this._ajax.responseText
1737+
data = this._ajax.responseText;
17381738
}
17391739
else if (this._xhr && this._xhr.responseText) {
17401740
if (this._xhr.responseType !== '' && this._xhr.responseType !== 'text')

0 commit comments

Comments
 (0)