Skip to content

Commit 0f0f099

Browse files
committed
eslint fixes
1 parent d258fc3 commit 0f0f099

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/loader/filetypes/SpriteSheetFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var SpriteSheetFile = function (loader, key, url, config, xhrSettings)
3333
this.cache.addSpriteSheet(this.key, this.data, this.config);
3434

3535
this.loader.emit('filecomplete', this.key, this);
36-
}
36+
};
3737

3838
return image;
3939
};

src/loader/filetypes/TilemapJSONFile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ var TilemapJSONFile = function (loader, key, url, format, xhrSettings)
3838
this.cache.add(this.key, { format: this.tilemapFormat, data: this.data });
3939

4040
this.loader.emit('filecomplete', this.key, this);
41-
}
41+
};
4242

4343
return json;
4444
};

0 commit comments

Comments
 (0)