@vpmedia/phaser 1.0.25 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/phaser.cjs +1 -1
- package/dist/phaser.cjs.LICENSE.txt +1 -1
- package/dist/phaser.cjs.map +1 -1
- package/dist/phaser.js +1 -1
- package/dist/phaser.js.LICENSE.txt +1 -1
- package/dist/phaser.js.map +1 -1
- package/package.json +1 -1
- package/src/phaser/core/loader.js +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vpmedia/phaser",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "@vpmedia/phaser is the modern ECMAScript port of the popular Phaser game engine v2.6.2",
|
|
5
5
|
"author": "Andras Csizmadia <andras@vpmedia.hu> (www.vpmedia.hu)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -696,14 +696,6 @@ export default class {
|
|
|
696
696
|
}
|
|
697
697
|
};
|
|
698
698
|
file.data.src = this.transformUrl(file.url, file);
|
|
699
|
-
// Image is immediately-available/cached
|
|
700
|
-
// Special Firefox magic, exclude from cached reload
|
|
701
|
-
// More info here: https://github.com/photonstorm/phaser/issues/2534
|
|
702
|
-
if (!this.game.device.firefox && file.data.complete && file.data.width && file.data.height) {
|
|
703
|
-
file.data.onload = null;
|
|
704
|
-
file.data.onerror = null;
|
|
705
|
-
this.fileComplete(file);
|
|
706
|
-
}
|
|
707
699
|
}
|
|
708
700
|
|
|
709
701
|
loadVideoTag() {
|