use baseURL instead of baseUrl

Fixed issue with 404 when loading content on iOS8 device
This commit is contained in:
Tim van den Eijnden 2014-10-22 16:48:12 +02:00
parent 321d7b0d06
commit b8dc3c624f

View file

@ -1476,7 +1476,7 @@ Phaser.Cache.prototype = {
* @private
*/
_resolveUrl: function (url) {
this._urlResolver.src = this.game.load.baseUrl + url;
this._urlResolver.src = this.game.load.baseURL + url;
this._urlTemp = this._urlResolver.src;