Browse Source

reverted change in image class, fixed bug #552

v3_develop
Alex de Mulder 9 years ago
parent
commit
10bb58b053
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      lib/network/Images.js

+ 3
- 2
lib/network/Images.js View File

@ -23,10 +23,11 @@ Images.prototype.setOnloadCallback = function(callback) {
* @return {Image} img The image object
*/
Images.prototype.load = function(url, brokenUrl) {
if (this.images[url] == undefined) {
var img = this.images[url];
if (img === undefined) {
// create the image
var me = this;
var img = new Image();
img = new Image();
img.onload = function () {
// IE11 fix -- thanks dponch!

Loading…
Cancel
Save